Ok, but, is not this a bit dangerous? That is, having multiple
identical keys within a dictionary is really good?
Thx.
dict [a=>1, b => 2, c =>3]
where, in some programs
a = "one"
b= "two"
c ="three"
and in other runs
a = "one"
b = "two"
c = "one"
However, we cound raise an error for the static declaration as
dict = [1 => 1, 1 => 2, 1 => 3]
That really seems a writer's error.
Gian.