Search This Blog
These notes document the trouble resolution of various items pertaining to Linux or it's applications. This blog also notes alternative open source applications and how they work.
- Get link
- X
- Other Apps
These notes document the trouble resolution of various items pertaining to Linux or it's applications. This blog also notes alternative open source applications and how they work.
#!/usr/bin/perl
use Tk;
my $mw = MainWindow->new;
$mw->title("Hello World");
$mw->Button(-text => "Done", -command => sub { exit })->pack;
MainLoop;
Comments
Post a Comment