Skip to content

Instantly share code, notes, and snippets.

@colomon
Created April 21, 2014 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colomon/11142571 to your computer and use it in GitHub Desktop.
Save colomon/11142571 to your computer and use it in GitHub Desktop.
sub cheap-lines($f) {
gather while (my $line = $f.get) {
take $line;
}
}
given open('words') -> $f {
my @a = cheap-lines($f);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment