dust/examples/variables.ds
2023-10-06 08:17:37 -04:00

11 lines
114 B
Plaintext

x = 1
y = "hello dust!"
z = 42.0
list = (3, 2, x)
big_list = (x, y, z, list)
foo = {
x = "bar"
y = 42
z = 0
}