This commit is contained in:
2022-04-10 15:55:56 +02:00
parent 2a9aa13058
commit c9eacbfdfc
35 changed files with 2118 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
// 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
end