feat(furc/parser): add if expression

This commit is contained in:
2026-08-09 17:26:21 +02:00
parent 47e8b1bf51
commit 2126b03069
3 changed files with 21 additions and 3 deletions
+1 -2
View File
@@ -8,8 +8,7 @@ int main(void) {
std::string_view content = R"(
func main(argc: u64) -> s32 pre(arc > 1) {
x: s32 = 1 + 2 * 3;
if (x == 9) return 1;
else return 0;
return if (x == 9) 1 else 0;
}
)";