Variables can now have an initializer

This commit is contained in:
Pasha Bibko
2025-05-08 15:04:01 +01:00
parent 141bb1530b
commit 794173e14f
2 changed files with 12 additions and 6 deletions

View File

@@ -1,8 +1,9 @@
func main()
{
int a = 65465
int a
a = 5 + 2
int b = 6
int b = 6 + 1
return a + b
}