-
-
Save treyharris/67816b7d12531bba6ec02e665ce7dba9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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