Skip to content

Instantly share code, notes, and snippets.

@zoffixznet

zoffixznet/p6.p6 Secret

Created October 25, 2017 10:58
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 zoffixznet/59f4b46d361511efff1a74b373fff6fa to your computer and use it in GitHub Desktop.
Save zoffixznet/59f4b46d361511efff1a74b373fff6fa to your computer and use it in GitHub Desktop.
start react whenever IO::Socket::Async.listen('127.0.0.1', 15555) {
start @ = supply {
say 'got here ' ~ $*AWAITER;
whenever $_ {
say 'but not here ' ~ $*AWAITER;
exit;
}
}.list
}
sleep .1;
.print: "x\n" with IO::Socket::INET.new: :host<127.0.0.1>, :15555port;
sleep 2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment