Help for this page

Select Code to Download


  1. or download this
    my $myscale = 1;
    if ( defined $scale ) { $myscale = $scale; }
    
  2. or download this
    my $myscale = $scale // 1;
    
  3. or download this
    my $myscale = extscale // 1;
    sub extscale { return $scale; }