Help for this page

Select Code to Download


  1. or download this
    if (condition) {
        statement 1;
    ...
        statement 3;
        statement 4;
    }
    
  2. or download this
    condition ? {statement 1; statement 2} : {statement 3; statement 4}
    
  3. or download this
    $ perl -e 'print "hello\n" and print "bye\n" if 1'
    hello
    bye
    
  4. or download this
    $ perl -e 'print("hello\n"), print "bye\n" if 1'
    hello
    bye
    
  5. or download this
    $ perl -e '1 ? (print "hello\n" and print "bye\n") : (print "hello2\n"
    + and print "bye2\n")'
    hello
    bye