Variadic function: Difference between revisions

m
(→‎{{header|Insitux}}: replace loop-over implementation due to deprecation)
imported>Arakov
Line 1,067:
 
=={{header|Elena}}==
ELENA 46.1x :
<syntaxhighlight lang="elena">import system'routines;
import extensions;
Line 1,075:
printAll(params object[] list)
{
for(int i := 0,; i < list.Length,; i+=1+)
{
self.printLine(list[i])
Anonymous user