Skip to content

Instantly share code, notes, and snippets.

@kanatohodets
Created September 28, 2015 21:20
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 kanatohodets/af74ad87da34a4bc8ff8 to your computer and use it in GitHub Desktop.
Save kanatohodets/af74ad87da34a4bc8ff8 to your computer and use it in GitHub Desktop.
use v6;
class Foo {
my $count = 0;
method bar () {
$count++;
say "bar called $count times";
self;
}
}
my $foo = Foo.new;
$foo
.bar
.bar
.bar
.bar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment