dust/examples/variables.ds

11 lines
114 B
Plaintext
Raw Permalink Normal View History

2023-10-06 12:17:37 +00:00
x = 1
y = "hello dust!"
z = 42.0
list = [3, 2, x]
big_list = [x, y, z, list]
2023-10-06 12:17:37 +00:00
foo = {
x = "bar"
y = 42
z = 0
}