dust/examples/map.ds

12 lines
135 B
Plaintext
Raw Normal View History

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