If I create a hash table:
/hmake saragani 10
and then add the lines:
/hadd saragani aa 1
/hadd saragani bb 1
/hadd saragani cc 1
/hadd saragani dd 1
/hadd saragani ee 1
Then when writting the following, I will get:
//echo -a $hget(saragani,1).item
cc
//echo -a $hget(saragani,2).item
bb
//echo -a $hget(saragani,3).item
dd
//echo -a $hget(saragani,4).item
aa
//echo -a $hget(saragani,5).item
ee
And it doesn't make sense. It is not being ordered by the order that I added them, and it is not being ordered alphabeticly, and it is not being ordered by the value.
How it is ordered, and can I make it being ordered by the order I added them???