Help for this page

Select Code to Download


  1. or download this
    my $x;
    
    ...
    
    $x = getValue() unless defined $x;
    
  2. or download this
    my @a;
    
    ...
    
    @a = getValues() unless @a;
    
  3. or download this
    @a //= getValues();