Help for this page

Select Code to Download


  1. or download this
    if ($x) {
      print 1;
    }
    elsif ($x != 2) {
      print $y;
    }
    
  2. or download this
    print 1,
    2,
    3,
    undef,
    4;
    
  3. or download this
    if ($x) { ... }
    elsif (do {; $x == 2}) { ... }