Hash
Hash(
a => 1,
b => 2,
c => 3,
)Working with hashes:
var hash = Hash(name => 'Sidef')
# Print the value of a key
say hash{"name"} #=> "Sidef"
# Set a key into the hash
hash{"age"} = 6
# Print the hash
say hashHash of Arrays
Existent key
Deleting a key
Last updated