Skip to content

Instantly share code, notes, and snippets.

@labster
Created March 31, 2013 08:10
Show Gist options
  • Save labster/5279948 to your computer and use it in GitHub Desktop.
Save labster/5279948 to your computer and use it in GitHub Desktop.
er
class Foo {
method baz ($a, $b?) {
if ! defined $b || $b eq '' {
$b = $*CWD;
}
say $a, $b;
}
}
Foo.baz('foo', 'bar');
Foo.baz('foo');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment