feat(furc/parser): add function calls

This commit is contained in:
2026-08-09 18:34:53 +02:00
parent a420ebf69f
commit 4b9f58b34f
3 changed files with 62 additions and 31 deletions
+1
View File
@@ -8,6 +8,7 @@ int main(void) {
std::string_view content = R"(
func main(argc: u64) -> s32 pre(arc > 1) {
x: s32 = 1 + 2 * 3;
println(x);
return if (x == 9) 1 else 0;
}
)";