Help for this page

Select Code to Download


  1. or download this
    if (eval($expression)) {
      $output = $true;
    } else {
      $output = $false;
    }
    
  2. or download this
    eval { $expression };
    $output = defined $@ ? $false : $true;