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

7 lines
129 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let words = ["Enjoy", "Rosetta", "Code"]
for word in words:
(word) |> async (w) =>
sleep(random())
print(w)