Help for this page

Select Code to Download


  1. or download this
    if (defined $foo and $foo eq 'true') {...}
    
  2. or download this
    sub is_true ($) { defined $_[0] and $_[0] eq 'true' }
    
    if (is_true $foo) {...}
    if (is_true $bar) {...}