``` julia> h = HashTable{Int64}() HashTable() julia> h[1.5] = "1.5" {2=>"1.5",} julia> h[2] = "2" {2=>"2",2=>"1.5",} ``` Oops.