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,9 @@
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
end

View File

@@ -0,0 +1,16 @@
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
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)
end