Files
xiuos/Ubiquitous/Nuttx/apps/examples/bastest/tests/test41.bas
2021-06-09 14:33:15 +08:00

9 lines
106 B
QBasic

function f(c)
print "f running"
if (c) then f=42 : exit function
f=43
end function
print f(0)
print f(1)