Help for this page

Select Code to Download


  1. or download this
    sub hello3 {
        if ($nice) {
    ...
           return "Get Lost!"
        }
    }
    
  2. or download this
    sub hello3 {
        return $nice ? "Hi" : "Get Lost!"
    }
    
  3. or download this
    print "you were asking for it!" unless $nice;
    
    ...
        # more statements
        return "hi"
    }
    
  4. or download this
    $nice > 0 or print "Now I am goin to teach you ...";