1
0
dust/examples/map.ds

12 lines
135 B
Plaintext
Raw Normal View History

2023-11-28 11:01:38 -05:00
dictionary = {
dust = "awesome"
answer = 42
2023-11-28 11:01:38 -05:00
}
(output
'Dust is '
2023-11-10 16:24:19 -05:00
+ dictionary:dust
+ '! The answer is '
2023-11-10 16:24:19 -05:00
+ dictionary:answer
)