|
Contents | Previous | Next | Subchapters |
| Syntax |
function name()block
|
| See Also | function arguments , local functions , multiple return values |
clear
function f() begin
print "Hello World!"
end
will define the function f.
If you continue this example by entering
f
O-Matrix will respond
Hello World!