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,10 @@
func main() begin
var a, b
a := 1 + 2 + 4 + 5 + 6 + 7 + 8 + 9
b := (10 + 10 * 4) * (2 + 2 * (1 + 1)) / 10 + 2 * 5 + 6 / 3
if a = b then
print "The answer is", b
return 0
end

View File

@@ -0,0 +1,18 @@
func my_func(a, b, c, d, e, f, g, h) begin
var i, j, k, l, m
i := a + b + d
if i = f then begin
print "hmmm"
end
return i
end
func main() begin
var n, o, p, q, r, s, t, u, v, w
n := 5
n += my_func(1, 2, 3, 5, 8, 13, 21, 34)
return 0
end