Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created June 22, 2019 19:33
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/857ca96dcd226d438bcd24abe9a8de02 to your computer and use it in GitHub Desktop.
Save Whateverable/857ca96dcd226d438bcd24abe9a8de02 to your computer and use it in GitHub Desktop.
committable6
2019.03,HEAD my @a = <foo bar baz>; my $s = @a.Seq; say $s.first; say $s.first
¦«2019.03»:
foo
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/sPCr_tZ_oz line 1
«exit code = 1»
¦«HEAD(0c8f960)»:
foo
foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment