Files
furlang/furc/src/main.cpp
T
CHatingPython 438288f8f1 Add gtest
Signed-off-by: CHatingPython <chatingpython@gmail.com>
2026-05-31 19:16:49 +02:00

14 lines
240 B
C++

#ifndef LIBFURC
#include "furc/front/parser.hpp"
#include <iostream>
int main(void) {
furc::front::parser parser("<TEMP>", "func main() {\n return;\n}");
std::cout << parser.parse() << '\n';
return 0;
}
#endif // LIBFURC