1
0
dust/examples/map.ds
2024-01-04 21:12:45 -05:00

12 lines
124 B
Plaintext

Info = struct {
dust = "awesome"
answer = 42
}
output(
'Dust is '
+ Info:dust
+ '! The answer is '
+ Info:answer
)