Help for this page

Select Code to Download


  1. or download this
    if (x = y) {
        print x;
    }
    
  2. or download this
    if (x = y) { print x; }
    
  3. or download this
    if (x = y)
    { print x; }
    
  4. or download this
    if ($Age < 13) && ($Age > 0))
     { 
    ...
    mature enough for PG-13 materials, we’re glad to see 
    you $firstName.";
     }
    
  5. or download this
    if (($Age < 13) && ($Age > 0)) {
        print "content";
    } elsif (($Age < 18) && ($Age > 12)) {
        print "content";
    }
    
  6. or download this
    if (($Age < 13) && ($Age > 0)) {
        print "content";
    ...
    elsif (($Age < 18) && ($Age > 12)) {
        print "content";
    }