Skip to content

Instantly share code, notes, and snippets.

@treyharris
Created February 3, 2020 23:55
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 treyharris/67816b7d12531bba6ec02e665ce7dba9 to your computer and use it in GitHub Desktop.
Save treyharris/67816b7d12531bba6ec02e665ce7dba9 to your computer and use it in GitHub Desktop.
#!/usr/bin/env raku
class B {
method foo(B:U: --> Str) { "Bee" }
}
say B.foo;
my B $b;
say $b.foo;
$b.new;
say $b.foo;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment