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

    if 1 = 1 then begin
        print "true"
    end

    if 1 = 2 then begin
        print "false"
    end 

    if 1 < 2 then begin
        print "true"
    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, w)
end