Next: Calling Functions, Previous: Optional Arguments, Up: Functions [Contents][Index]
Functions getting an arbitrary number of arguments are denoted like this:
fun printf (string fmt, args…) void: { … }
The variadic argument shall be the last argument in the function, and
it is of type any[]
.