aboutsummaryrefslogtreecommitdiff
path: root/examples/rooms.p6
diff options
context:
space:
mode:
authorMatias Linares <matiaslina@gmail.com>2020-03-24 19:37:11 -0300
committerMatias Linares <matiaslina@gmail.com>2020-03-24 19:37:11 -0300
commite50b8fa9e02b19ece80ebeb576051e451d3a7812 (patch)
tree037db346e5deacfe21fe0bbae1b496331e3c117e /examples/rooms.p6
parente39257df2688137d57d88d502f7198425d5dfcd5 (diff)
downloadperl6-matrix-client-e50b8fa9e02b19ece80ebeb576051e451d3a7812.tar.gz
Rename some things to from perl6 to raku
Diffstat (limited to 'examples/rooms.p6')
-rw-r--r--examples/rooms.p612
1 files changed, 0 insertions, 12 deletions
diff --git a/examples/rooms.p6 b/examples/rooms.p6
deleted file mode 100644
index 4f0a0c7..0000000
--- a/examples/rooms.p6
+++ /dev/null
@@ -1,12 +0,0 @@
-use v6;
-use Matrix::Client;
-
-
-sub MAIN($username, $pass) {
- my $c = Matrix::Client.new(home-server => 'https://matrix.deprecated.org');
- $c.login: $username, $pass;
-
- for $c.joined-rooms -> $room {
- $room.say;
- }
-}