musique/regression-tests/builtin/call.mq

9 lines
180 B
Plaintext
Raw Normal View History

-- Call executes blocks without parameters
2022-10-31 00:39:56 +01:00
say (call (|42)),
-- Call executes block passing parameters
2022-10-31 00:39:56 +01:00
say (call (n | n + 1) 10),
-- Call executes builtin functions
call say 43,