Created
April 27, 2019 17:40
evalable6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
my %h = (:a<1 2 3>, :b<4 5 6>, :c<7 8>); say gather for %h.kv -> ($key, @value ) { for @value -> $v { take $key, $v } } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(exit code 1) | |
Cannot unpack or Capture `c`. | |
To create a Capture, add parentheses: \(...) | |
If unpacking in a signature, perhaps you needlessly used parentheses? -> ($x) {} vs. -> $x {} | |
or missed `:` in signature unpacking? -> &c:(Int) {} | |
in code at /tmp/vICF3RCkdn line 1 | |
in block <unit> at /tmp/vICF3RCkdn line 1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment