diff options
author | Matias Linares <matiaslina@gmail.com> | 2020-03-24 19:37:11 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@gmail.com> | 2020-03-24 19:37:11 -0300 |
commit | e50b8fa9e02b19ece80ebeb576051e451d3a7812 (patch) | |
tree | 037db346e5deacfe21fe0bbae1b496331e3c117e /examples/run.raku | |
parent | e39257df2688137d57d88d502f7198425d5dfcd5 (diff) | |
download | perl6-matrix-client-e50b8fa9e02b19ece80ebeb576051e451d3a7812.tar.gz |
Rename some things to from perl6 to raku
Diffstat (limited to 'examples/run.raku')
-rw-r--r-- | examples/run.raku | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/run.raku b/examples/run.raku new file mode 100644 index 0000000..af1b188 --- /dev/null +++ b/examples/run.raku @@ -0,0 +1,21 @@ +#!/usr/bin/env raku +use v6; +use lib <lib>; +use Matrix::Client; + +sub MAIN(Str:D $username, Str:D $password, :$home-server = "https://matrix.deprecated.org") { + my Matrix::Client $client .= new: :$home-server; + $client.login($username, $password); + + my $sup = $client.run(:sleep<5>); + + signal(SIGINT).tap({ + say "Bye"; + $client.logout; + exit 0; + }); + + react whenever $sup -> $ev { + say $ev; + } +} |