dust/examples/async_download.ds

10 lines
387 B
Plaintext
Raw Permalink Normal View History

2023-11-16 07:57:50 +00:00
cast = (download "https://api.sampleapis.com/futurama/cast")
characters = (download "https://api.sampleapis.com/futurama/characters")
episodes = (download "https://api.sampleapis.com/futurama/episodes")
2023-11-04 10:02:27 +00:00
2023-11-16 07:57:50 +00:00
cast_len = (length (from_json cast))
characters_len = (length (from_json characters))
episodes_len = (length (from_json episodes))
2023-11-04 10:02:27 +00:00
2023-11-05 18:54:29 +00:00
(output [cast_len, characters_len, episodes_len])