Skip to content

Instantly share code, notes, and snippets.

@jaffa4
Created July 16, 2015 07:33
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 jaffa4/65d3e848cf08024957b0 to your computer and use it in GitHub Desktop.
Save jaffa4/65d3e848cf08024957b0 to your computer and use it in GitHub Desktop.
class a
{
has $b;
method new()
{
self.bless(b=>4);
}
method get()
{
return $!b;
}
}
my $c = a.new();
say $c.get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment