2022-09-25 10:40:36 +02:00
|
|
|
-- Call executes blocks without parameters
|
2022-10-31 00:39:56 +01:00
|
|
|
say (call (|42)),
|
2022-09-25 10:40:36 +02:00
|
|
|
|
|
|
|
-- Call executes block passing parameters
|
2022-10-31 00:39:56 +01:00
|
|
|
say (call (n | n + 1) 10),
|
2022-09-25 10:40:36 +02:00
|
|
|
|
|
|
|
-- Call executes builtin functions
|
2022-10-27 22:32:20 +02:00
|
|
|
call say 43,
|