11 lines
192 B
Text
11 lines
192 B
Text
isSmall = function(x)
|
|
print "checking smallness"
|
|
return x < 40
|
|
end function
|
|
|
|
isBig = function(x)
|
|
print "checking bigness"
|
|
return x > 60
|
|
end function
|
|
|
|
isSmall(10) or isBig(100)
|