in reply to Re^3: Standard way for displaying a script's output.
in thread Standard way for displaying a script's output.

Yes, but the point might have been you cannot mix both input and output in this way.
  • Comment on Re^4: Standard way for displaying a script's output.

Replies are listed 'Best First'.
Re^5: Standard way for displaying a script's output.
by Anonymous Monk on Feb 11, 2012 at 08:58 UTC

    Sure you can, that is why each code tags section gets its own download link

    my $data = <<'<<DATA'; Dont you put me after __DATA__ you human <<DATA open my($fh), '<', \$data; while(<$fh>){ print length, "\n"; } __END__
    42

    besides, when human copy/paste, human edit :)