Help for this page

Select Code to Download


  1. or download this
        if (&condition) {
            &yes;
        } else {
            &no;
        }
    
  2. or download this
        if (&condition) 
        {
    ...
        {
            &no;
        }
    
  3. or download this
        if(&condition){&yes;}else{&no;}
    
  4. or download this
        @list = (
            'item one',
            'item two',
            'item three',   ## <- unnecessary punctuation
        );