b8b13d1635
Signed-off-by: CHatingPython <chatingpython@gmail.com>
14 lines
255 B
C++
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
|