RosettaCodeData/Task/Associative-array-Creation/Hexiscript/associative-array-creation.hexi

7 lines
193 B
Text
Raw Permalink Normal View History

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