mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-02 04:39:01 +00:00
9 lines
107 B
QBasic
9 lines
107 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)
|
|
|