RosettaCodeData/Task/Call-a-function/SenseTalk/call-a-function-6.sensetalk

7 lines
146 B
Plaintext

CustomHandler 1, 2, 3
// Prints: 1 - 2 - 3
to handle CustomHandler arg1, arg2, arg3
put arg1 && "-" && arg2 && "-" && arg3
end CustomHandler