Help for this page

Select Code to Download


  1. or download this
    if (...) {
        ...;
        last if ...;  # cannot use C<last> with G<if>
        ...;
    }
    
  2. or download this
    if (...) {
        {
    ...
            ...;
        }
    }
    
  3. or download this
    if (...) {{
        ...;
        last if ...;  # same
        ...;
    }}