dbuild/src/context.cpp
2021-07-09 07:14:49 -04:00

7 lines
136 B
C++

#include "context.h"
#include <iostream>
void Context::error(std::string_view msg) {
std::cout << "Error! " << msg << std::endl;
}