Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created January 28, 2018 16:38
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 Whateverable/c10d4b00c8389e82e53fc2eb534a78d2 to your computer and use it in GitHub Desktop.
Save Whateverable/c10d4b00c8389e82e53fc2eb534a78d2 to your computer and use it in GitHub Desktop.
evalable6
my @a = 9, 4, 2, 5, 6; my $foo = @a.sort; say $foo ~~ $foo.List; .say for $foo
(exit code 1)
False
The iterator of this Seq is already in use/consumed by another Seq
(you might solve this by adding .cache on usages of the Seq, or
by assigning the Seq into an array)
in block <unit> at /tmp/ChPPkyma5x line 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment