|
On Wed, Jun 26, 2013 at 9:45 AM, Daniel Barna <daniel.barna@cern.ch> wrote:nitpicking: that function doesn't return a list of variables. it
> Hi, I have a function which return a list of variables:
> function some_function()
> return a,b,c,d;
> end
returns a list of values.
the values don't have names, so if you want those in your file, you're
out of luck unless you return those too.
why not return a table? then you can write both the keys and values
to the file.
--
Javier