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