Help for this page

Select Code to Download


  1. or download this
    ($net eq $x) ? 1 : 0;
    
    ...
    else {
       return 0;
    }
    
  2. or download this
    ($x eq $y) ? _do_something()      :
    ($x eq $z) ? _do_something_else() :
    ($x eq $w) ? _do_a_third_thing()  :
    _do_default_thing;