function testEcho(%word, %anotherWord) { echo(%word SPC %anotherWord); } call(testEcho, hello, world); // echoes "hello world" %func = testEcho; call(%func, 1); // echoes "1 "