The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/local/bin/perl -w

#
# Figure 16.2, p161
#

use Tk;

my $bitmaps = Tk->findINC("demos/images");
my $mw = MainWindow->new;
$mw->Label(-bitmap => "\@$ {bitmaps}/flagdown")->pack;
$mw->Label(-text => 'No new mail')->pack;

MainLoop;