Files
Chloride/tests/hashmap_order.ar
2025-11-08 04:29:09 +00:00

13 lines
122 B
Plaintext

let x = {'p':1}
x.z = 1
x.b = 2
x.c = 3
x.a = 7
term.log(x)
let y = {'p':1}
y.z = 1
y.b = 2
y.c = 3
y.a = 7
term.log(y)