This commit is contained in:
2026-02-08 16:10:39 +01:00
parent 1a5742fc4f
commit 38f55d8e7c
4 changed files with 63 additions and 1 deletions

View File

@@ -4,6 +4,14 @@ const string contents = """
func main(): i32 {
let x: i32 = 23
x = 24
if true {
x = 49
}
else {
x = 3
}
do_something("test")
return x
}