Parse binop expressions

Signed-off-by: CHatingPython <chatingpython@gmail.com>
This commit is contained in:
CHatingPython
2026-05-26 21:06:37 +02:00
committed by CHatingPython
parent e205d67443
commit f130553e20
8 changed files with 194 additions and 30 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
#include <iostream>
int main(void) {
furc::front::parser parser("<TEMP>", "func main() {\n return 67;return \"uwu\";\n}");
furc::front::parser parser("<TEMP>", "func main() {\n return 7 + 6 * 10; // 130\n}");
std::cout << parser.parse() << '\n';
return 0;