Quick actions

cmd+k|ctrl+k

Navigation

Languages

Assuming 

Snippet info

Language

Raku

Visibility

public

Author

fernando-correa

Created

2022-08-16T09:59:23.666146Z

Updated

2022-08-16T09:59:23.666146Z

sub print-with-suffix($what, :$suffix = "\n") {
    print $what, $suffix
}

print-with-suffix("test") xx 3;

my &print-with-comma = &print-with-suffix.assuming: :suffix(", ");

print-with-comma("test") xx 3;
INFO