Variadic function: Difference between revisions

Content added Content deleted
(Add Ecstasy example)
(Add Plain English)
Line 2,362: Line 2,362:
if ^omitted(d) then put skip list (d);
if ^omitted(d) then put skip list (d);
end s;</syntaxhighlight>
end s;</syntaxhighlight>

=={{header|Plain English}}==
The only built-in imperative in Plain English that has variadic arguments is the 'call' imperative:
<syntaxhighlight lang="text">Call [dll name] [dll function] with [a value] and [another value].</syntaxhighlight?
The number of arguments used in the statement varies on the number of arguments needed by the DLL function. Variadic functions cannot be user-defined.


=={{header|PowerShell}}==
=={{header|PowerShell}}==