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