RosettaCodeData/Task/Collections/Fancy/collections-2.fancy
2023-07-01 13:44:08 -04:00

9 lines
273 B
Text

# creating an empty hash
h = <[]> # => <[]>
h["a"]: 1 # => <["a" => 1]>
h["test"]: 2.4 # => <["a" => 1, "test" => 2.4]>
h[3]: "Hello" # => <["a" => 1, "test" => 2.4, 3 => "Hello"]>
# creating a hash with the constructor
h = Hash new # => <[]>