musique/regression-tests/builtin/call.mq
2022-10-31 00:39:56 +01:00

9 lines
180 B
Plaintext

-- Call executes blocks without parameters
say (call (|42)),
-- Call executes block passing parameters
say (call (n | n + 1) 10),
-- Call executes builtin functions
call say 43,