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-12-02 07:34:23 +00:00
|
|
|
async {
|
|
|
|
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])
|