Skip to content

Instantly share code, notes, and snippets.

@hlindberg
Created February 12, 2019 21:20
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 hlindberg/59ceb023156c817643bc92c7a63899e9 to your computer and use it in GitHub Desktop.
Save hlindberg/59ceb023156c817643bc92c7a63899e9 to your computer and use it in GitHub Desktop.
mapping a hash
$h = { 'b' => ['banana', 'bandana'], 'o' => ['orange', 'ovaltine'] }
$h2 = $h.map |$k, $v | { [$k,$v[0]] }
notice "h2 = ${h2}"
notice Hash($h2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment