musique/regression-tests/builtin/call.mq
2022-10-27 22:32:20 +02:00

9 lines
179 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,