in reply to Rakudo * DATA filehandle syntax

I don't know about the state of implementation for the DATA filehandle (and I've tried several variations to no avail). However, reading from a file seems to work fine:
my $data_fh = open 'data.txt'; for $data_fh.lines { .say }