Help for this page

Select Code to Download


  1. or download this
    use CGI qw/:standard/;
    my $q = new CGI;
    
    my $choice = param('choice') || 1;
    
  2. or download this
    my $choice = param('choice') // 1;
    
  3. or download this
    my $choice = param('choice');
    $choice = 1 unless defined $choice;