Skip to content

Instantly share code, notes, and snippets.

@zoffixznet

zoffixznet/p6.p6 Secret

Last active October 25, 2017 10:56
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/4254b946539b6e2e6431f84957c2835a to your computer and use it in GitHub Desktop.
Save zoffixznet/4254b946539b6e2e6431f84957c2835a to your computer and use it in GitHub Desktop.
start react whenever IO::Socket::Async.listen('127.0.0.1', 15555) {
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