6 lines
193 B
Text
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]
|