This commit is contained in:
2022-02-21 12:44:43 +01:00
parent 986228c449
commit c61f68540d
21 changed files with 827 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
func main() begin
var a
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_fun(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