in reply to Re^2: perl 5.16.3 + Tk 804.031 core dumps on syntax check when a window is made in BEGIN block
in thread perl 5.16.3 + Tk 804.031 core dumps on syntax check when a window is made in BEGIN block
BEGIN { use Tk; our $MW = MainWindow->new(); # other method calls. } our $MW;
Perhaps you mean (not verified):
our $MW; BEGIN { use Tk; $MW = MainWindow->new(); # other method calls. }
--MidLifeXis
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: perl 5.16.3 + Tk 804.031 core dumps on syntax check when a window is made in BEGIN block
by Anonymous Monk on Nov 09, 2013 at 12:02 UTC |