in reply to Tk::Error that I do not understand.


my @tableArray = (
    \( 1..COLS ),
    \( 1..COLS ),
    \( 1..COLS ),
    \( 1..COLS ),
    \( 1..COLS ),
    \( 1..COLS ),
    \( 1..COLS ),
    \( 1..COLS ),
    \( 1..COLS ),
    \( 1..COLS ),
);

Surely you meant :

my @tableArray = ( [ 1..COLS ], [ 1..COLS ], [ 1..COLS ], [ 1..COLS ], [ 1..COLS ], [ 1..COLS ], [ 1..COLS ], [ 1..COLS ], [ 1..COLS ], [ 1..COLS ], );

/J\

Replies are listed 'Best First'.
Re: Re: Tk::Error that I do not understand.
by IlyaM (Parson) on Feb 17, 2002 at 10:29 UTC
Re: Re: Tk::Error that I do not understand.
by rbc (Curate) on Feb 17, 2002 at 23:27 UTC
    Surely you missed the point of
    my post. Why am I get the Tk::Error?
    But your stylistic critique is appreciated :)