Skip to content

Instantly share code, notes, and snippets.

@ab5tract
Created May 25, 2024 16:24
Show Gist options
  • Save ab5tract/c1dcc3752ff2f45e38f040d28384e587 to your computer and use it in GitHub Desktop.
Save ab5tract/c1dcc3752ff2f45e38f040d28384e587 to your computer and use it in GitHub Desktop.
Various Rakudo Issues
class TestMe {
has @!modules = <Test NativeCall Telemetry>;
method test-method {
gather for @!modules -> $module { take (require ::($module)) }
}
}
await Promise.allof: (1..10).map({ start { TestMe.new.test-method.map({ $_ }).sink; } });
say "DONE"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment