Help for this page

Select Code to Download


  1. or download this
    if (my $val = some_func()) {
        # ...
    }
    
  2. or download this
    {
        my $val = some_func();
        if ($val) {
            # ... 
        }
    }