Skip to content

Commit

Permalink
started Perl6 PubNub Push API, sorta.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenlb committed Aug 4, 2010
1 parent a9eb2d6 commit f315b52
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions perl6/Pubnub.pm
@@ -0,0 +1,15 @@
class Pubnub {
method publish(%args) {
return 1;
}
}

my $pubnub = Pubnub.new();
my %prr = {{
test => {
10
}
}}();

say %prr<test>();
say $pubnub.publish({});

0 comments on commit f315b52

Please sign in to comment.