mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-26 11:50:52 +00:00
9 lines
106 B
QBasic
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)
|