Help for this page

Select Code to Download


  1. or download this
    if ( some condition ) {
      print "It's true\n";
    } else {
      print "It's false\n";
    }
    
  2. or download this
    if ( some condition ) {
      print "It's true\n";
    ...
    else {
      print "It's false\n";
    }
    
  3. or download this
    if    ( Some condition 1 ) {
      print "First case\n";
    ...
    else {
      print "Default case\n";
    }