Files
furlang/furc/src/main.cpp
T
CHatingPython 7017d83204 Add default constructor to handle
Signed-off-by: CHatingPython <chatingpython@gmail.com>
2026-05-31 19:16:50 +02:00

14 lines
258 B
C++

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