in reply to Re: Win32::GUI::Textfield problems
in thread Win32::GUI::Textfield problems

No, that's actually just a plain Perl hash declaration. Watch:
#!perl use strict; use warnings; my %hash = ( one => 1, two => 2, ); print "$_ => $hash{$_}\n" for keys %hash;
No error.
It's just "syntactic sugar" to make the declaration more uniform, I believe.
Hope this helped.
CombatSquirrel.

Entropy is the tendency of everything going to hell.

Replies are listed 'Best First'.
Re^3: Win32::GUI::Textfield problems
by heroin_bob (Sexton) on Jul 20, 2004 at 22:12 UTC
    Gotcha, that's definitely good to know... Thnx for the tip!
    ~hb