Help for this page

Select Code to Download


  1. or download this
    my $button1 = $mw->Button(-text => "18-Letters",
                              -command => sub {print OUTFILE "18L\n", back
    +ground => "yellow"})->pack(-side =>"top");
    
  2. or download this
    my $button1 = $mw->Button(-text => "18-Letters",
                              -command => sub {print OUTFILE "18L\n" },
                              -background => "yellow"})->pack(-side =>"top
    +");
    
  3. or download this
    sub { print OUTFILE "18L\n", background => "yellow" }
    
  4. or download this
    sub { print OUTFILE "18L\n", "background", "yellow" }