or download this
my $mw = new Tk::MainWindow;
my @cb = ((map { $mw->Checkbutton(-text => (qw{Red Green Blue})[$_])->
...
(map { $mw->Checkbutton(-text => (qw{Mustard Vinegar Salt})[$_])
+->
grid(-column => $_, -row => 1, -sticky => 'w') } 0..2));
MainLoop;