feat: add expression statements and assign expressions

This commit is contained in:
2026-04-21 23:18:13 +02:00
parent 3fe307eff8
commit 68ec14e541
7 changed files with 190 additions and 5 deletions
+6
View File
@@ -0,0 +1,6 @@
fn main() -> i32 {
let a = 0;
let b = 0;
a = b = 42;
return a;
}