summary refs log tree commit diff stats
path: root/raku/two-fer/TwoFer.rakumod
blob: cf079528fdf49b7175d897968dff4033c1d6a897 (plain) (blame)
1
2
3
4
5
unit module TwoFer;

sub two-fer ($name?) is export {
    return "One for {$name // "you"}, one for me.";
}