I'm further playing with Raku's CommaIDE and I wanna print a binary file line by line. I've tried this, but it doesn't work:
for "G.txt".IO.lines -> $line {
say $_;
}
How shall I fix it ? It's obviously incorrect.
EDIT this doesn't work either, see the snippet bellow
for "G.txt".IO.lines -> $line {
say $line;
}
