From: Stefano Crocco Date: 2008-11-10T23:28:45+09:00 Subject: Re: Passing array instead of individual parameters? Alle Monday 10 November 2008, Stefan Kruger ha scritto: > myroutine(myparamlist) # fails > > So, my question is - is there a way of calling a routine expecting N > parameters with a list containing N elements instead? myroutine(*myparamlist) The *, when put in front of an array in an argument list transforms each element of the array in an argument to the method. It is sometimes called the "splat operator", even if it's not a true operator. Stefano