This commit is contained in:
2022-03-31 21:23:57 +02:00
parent 7c3e5aaefa
commit d266ac400e
33 changed files with 1719 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
// checking that comments are ignored
// This program checks the assignment operators
func main()
begin
var a
a := 3
a += 1
a /= 2
a *= 32
a -= 2
print a
return 0
end