Help for this page

Select Code to Download


  1. or download this
    use vars qw($InputText);
    $InputText = "";
    ...
    # my $guess = int ($input->get);
    my $guess = int( $InputText );
    $InputText = ""; # empty it
    
  2. or download this
    my $input = $mw->EntryCheck(
      -textvariable => \$InputText,
      -pattern      => qr~\d~,
    )->form;