musique/regression-tests/builtin/call.mq
2022-09-25 10:40:36 +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;