Variadic function: Difference between revisions

Content added Content deleted
(→‎{{header|Insitux}}: replace loop-over implementation due to deprecation)
Line 1,520: Line 1,520:
=={{header|Insitux}}==
=={{header|Insitux}}==
<syntaxhighlight lang="insitux">(function f
<syntaxhighlight lang="insitux">(function f
(print (join "\n" args)))
(loop-over args a
(print a)))


(f 1 2 3 4)</syntaxhighlight>
(f 1 2 3 4)</syntaxhighlight>