Advertisement
cwchen

[Perl 6] Iterating a hash by values.

Oct 28th, 2017
873
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 6 0.10 KB | None | 0 0
  1. my %hash = one => "eins", two => "zwei", three => "drei";
  2.  
  3. for %hash.values -> $v {
  4.     $v.say;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement