in reply to Re: problem with PDL
in thread problem with PDL

That's not a syntax error. Look at perldata, under "List Value Constructors", and you'll note:

You may have an optional comma before the closing parenthesis of a list literal, so that you can say:
@foo = ( 1, 2, 3, );
That makes it particularly easy to line up all the list elements vertically, and add and remove elements easily.

Replies are listed 'Best First'.
Re^3: problem with PDL
by anonymized user 468275 (Curate) on Jun 30, 2005 at 14:01 UTC
    thanks - I often have to parse perl (e.g. searching and extracting from project code) so now I will have to adjust my rules to allow for unclosed lists.

    One world, one people