dust-lang 0.3.91

Data-Oriented Programming Language
Documentation
1
2
3
4
5
6
7
8
9
10
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
}