Skip to content

Instantly share code, notes, and snippets.

@scovit
Created July 17, 2018 15:06
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 scovit/f162349b4ac93bab757c7b7bd693afac to your computer and use it in GitHub Desktop.
Save scovit/f162349b4ac93bab757c7b7bd693afac to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl6
my @line;
for $*IN.lines>>.words -> @g {
my int $index = @g[0].Int;
@line[$index - 1] = @g.tail(*-2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment