Files
furlang/furc/src/main.cpp
T
CHatingPython b8b13d1635 Add paren expression
Signed-off-by: CHatingPython <chatingpython@gmail.com>
2026-05-31 19:16:51 +02:00

14 lines
255 B
C++

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