RosettaCodeData/Task/Associative-array-Creation/Hexiscript/associative-array-creation.hexi
2023-07-01 13:44:08 -04:00

6 lines
193 B
Text

let d dict 2 # Initial estimated size
let d["test"] "test" # Strings can be used as index
let d[123] 123 # Integers can also be used as index
println d["test"]
println d[123]