Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

BioGeek's scratchpad

by BioGeek (Hermit)
on Jul 28, 2004 at 09:31 UTC ( [id://377975]=scratchpad: print w/replies, xml ) Need Help??

#!/usr/bin/perl -w + use Test::Simple tests => 2; + use Tk; + my $mw = MainWindow->new; # create an object ok( defined $mw ); # check that we got something ok( $mw->isa('Tk') ); # and it's the right class + $mw->Label(-text => 'Hello, world!')->pack; is($mw->text, 'Hello World!', text() ); + $mw->Button( -text => 'Quit', -command => sub { exit }, )->pack; is($mw->text, 'Quit', text() ); is($mw->command, 'sub { exit }', text() );




Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (7)
As of 2024-03-28 12:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found