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