musique/regression-tests/builtin/call.mq

9 lines
179 B
Plaintext
Raw Normal View History

-- 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;