Help for this page

Select Code to Download


  1. or download this
    prefix_print("A\nB");
    prefix_print("C\n");
    
  2. or download this
    use strict;
    use warnings;
    ...
    prefix_print("A\nB","C\n");
    prefix_print("A\nB");
    prefix_print("C\n");
    
  3. or download this
    PA
    PBC
    PA
    PBC
    
  4. or download this
    use strict;
    use warnings;
    ...
    prefix_print('');
    prefix_print();
    prefix_print("the end\n");
    
  5. or download this
    PyA
    PBC
    ...
    PABC
    P
    Pthe end