more continious examples

This commit is contained in:
2022-04-02 20:15:06 +02:00
parent 3d68d7227c
commit 63a5efae3c
6 changed files with 87 additions and 2 deletions

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