4 lines
237 B
Text
4 lines
237 B
Text
|
|
env := environment; # Call a function that requires no arguments.
|
||
|
|
env := environment(); # Alternative possibility to call of a function with no arguments.
|
||
|
|
cmp := compare(i, j); # Call a function with a fixed number of arguments.
|