RosettaCodeData/Task/Concurrent-computing/Astro/concurrent-computing.astro

7 lines
129 B
Text
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
let words = ["Enjoy", "Rosetta", "Code"]
2018-08-17 15:15:24 +01:00
2018-06-22 20:57:24 +00:00
for word in words:
2019-09-12 10:33:56 -07:00
(word) |> async (w) =>
2018-06-22 20:57:24 +00:00
sleep(random())
2018-08-17 15:15:24 +01:00
print(w)