feat: Add support for let and expression statements.

This commit implements parsing for `let` statements, anything that
is not a let statement will be assumed to be an expression statement.
This commit is contained in:
2026-03-12 21:23:09 +01:00
parent bb9cb8d2d1
commit 1107c7d93d
6 changed files with 115 additions and 4 deletions

View File

@@ -1 +1 @@
foo.bar - 5 as i32
let test: i32 = foo.bar - 5 as i32;