9 lines
243 B
Text
9 lines
243 B
Text
put zeroArgsFn()
|
|
|
|
// Function calls can also be made using the following syntax:
|
|
put the zeroArgsFn
|
|
|
|
function zeroArgsFn
|
|
put "This function was run with zero arguments."
|
|
return "Return value from zero argument function"
|
|
end zeroArgsFn
|