Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created December 30, 2015 16:11
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 zoffixznet/991b1a645d711ee57884 to your computer and use it in GitHub Desktop.
Save zoffixznet/991b1a645d711ee57884 to your computer and use it in GitHub Desktop.
<ZoffixW> m: my $x = {'countries' => [{'cities' => [],'name' => 'Canada'}]}; for |$x<countries> -> $country { say $country<name>; say $country<cities>.elems }
<camelia> rakudo-moar d08e04: OUTPUT«Canada␤Method 'elems' not found for invocant of class 'Mu'␤ in block <unit> at /tmp/46zMQM9XjX line 1␤␤»
<ZoffixW> m: my $x = {'countries' => [{'cities' => [],'name' => 'Canada'},]}; for |$x<countries> -> $country { say $country<name>; say $country<cities>.elems }
<camelia> rakudo-moar d08e04: OUTPUT«Canada␤0␤»
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment