Hi All,

What am I doing wrong here?

$ echo -e "abc\ndef\nghi" | perl6 -e 'for ( split "\n", lines ) { say "<$_>"; }'

<abc def ghi>


I am trying to get

<abc>
<def>
<ghi>

Reply via email to