Skip to content

Instantly share code, notes, and snippets.

@hoelzro
Created June 5, 2015 23:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hoelzro/01e63a89c104b2b50a7c to your computer and use it in GitHub Desktop.
Save hoelzro/01e63a89c104b2b50a7c to your computer and use it in GitHub Desktop.
my $c = Channel.new;
my $p = start {
$c.send: 1;
};
loop {
earliest * {
more $c {}
wait 0 {}
}
}
await $p;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment