Help for this page

Select Code to Download


  1. or download this
    my_function(<<END, <<END . <<END);
    a
    ...
    END
    c
    END
    
  2. or download this
    my_function("a\n", "b\n" . "c\n");
    
  3. or download this
    my_function(<<A, <<B . <<C);
    a
    ...
    B
    c
    C
    
  4. or download this
    printf <<'END', 1, 2,
    %d %d %d %d
    END
    3, 4;