dust-lang 0.3.91

Data-Oriented Programming Language
Documentation
1
2
3
4
5
6
list = [1 2 3]

for i in list {
	i += 1
	(output i)
}