in reply to Re^6: what is difference between calling the function in Perl/Tk in the following ways
in thread what is difference between calling the function in Perl/Tk in the following ways
As of now, perl 5.10.0, Tk 804.028, even this code leaks:
perl -e 'use Tk;use Tk::Button;my $top = new MainWindow;for (1..100) { for (1..1000) { $top->Button(-text=>"foo")->destroy; } sleep 1; } '
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: what is difference between calling the function in Perl/Tk in the following ways
by ikegami (Patriarch) on Apr 18, 2010 at 00:00 UTC | |
by choroba (Cardinal) on Apr 18, 2010 at 18:06 UTC | |
|
Re^8: what is difference between calling the function in Perl/Tk in the following ways
by lamprecht (Friar) on Apr 18, 2010 at 23:15 UTC |