Quick actions

cmd+k|ctrl+k

Navigation

Languages

Long Names

Snippet info

Language

Raku

Visibility

public

Author

kaspik99

Created

2017-12-30T15:19:49Z

Updated

2017-12-30T15:20:30Z


# https://github.com/rakudo/rakudo/blob/master/src/core/Str.pm#L1413
# https://docs.perl6.org/type/Signature#Long_Names

multi sub f(Int $i, Str $s;; :$b) { say "$i, $s, {$b.perl}" };
multi sub f(Int $i, Str $s, :$b) { say "$i, $s, {$b.perl}" };
f(10, 'answer');
f(10, 'answer', :b(100));
INFO