RosettaCodeData/Task/Collections/Fancy/collections-2.fancy

10 lines
273 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
# 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 # => <[]>