diff --git a/rocks/computers/software/langs/raku.md b/rocks/computers/software/langs/raku.md index 1361468..c1dbf15 100644 --- a/rocks/computers/software/langs/raku.md +++ b/rocks/computers/software/langs/raku.md @@ -121,10 +121,11 @@ await Supply.from-list().throttle: 2, { .print } -#OUTPUT: ABCDhiEF - ~~~ + +Output is "ABCDhiEF" + the `start` block is called asyncronously, so it sleeps 1.5 seconds and then prints "hi" while the other part prints 2 letters every 0.5 seconds. so after printing ABCD, 1.5 seconds have passed, so it will