dust-lang 0.3.91

Data-Oriented Programming Language
Documentation
1
2
3
4
5
6
7
8
9
10
raw_data = (download "https://api.sampleapis.com/futurama/cast")
cast_data = (from_json raw_data)

names = []

for cast_member in cast_data {
	names += cast_member:name
}

(assert_equal "Billy West", names:0)