summaryrefslogtreecommitdiff
path: root/apps/examples/bastest/tests/test41.bas
blob: f307a866db7915fd0744fd8b2f886e1c425ab0e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
function f(c)
print "f running"
if (c) then f=42 : exit function
f=43
end function

print f(0)
print f(1)