WIP
[kaleidoscope.git] / Kaleidoscope / ast.cpp
1 #include "ast.hpp"
2 #include <string>
3 #include <iostream>
4
5 std::unique_ptr<ExprAST> LogError(std::string str) {
6         std::cerr << "LogError: " << str << std::endl;
7         return nullptr;
8 }