in reply to Re: Perl Debugger with Two Customs Tk Widgets
in thread Perl Debugger with Two Customs Tk Widgets
#!/usr/bin/env perl use Tk; $topWin = MainWindow->new(); my $text = $topWin->Text(); $text->insert("end", "Type text into this window"); print $text->search("-exact", 'e', '1.0', 'end')."\n"; print $text->search("-regexp", 'e', '1.0', 'end')."\n"; $text->pack(); MainLoop();
|
|---|