RosettaCodeData/Task/Variadic-function/REXX/variadic-function-3.rexx

11 lines
460 B
Rexx
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
call print_all .1,5,2,4,-3, 4.7e1, 013.000 ,, 8**2 -3, sign(-66), abs(-71.00), 8 || 9, 'seven numbers are prime, 8th is null'
2013-04-11 01:07:29 -07:00
call print_all "One ringy-dingy,",
"two ringy-dingy,",
"three ringy-dingy...",
"Hello? This is Ma Bell.",
"Have you been misusing your instrument?",
2014-01-17 05:32:22 +00:00
"(Lily Tomlin routine)"
/* [↑] example showing multi-line arguments.*/