RosettaCodeData/Task/Interactive-programming-repl-/Raku/interactive-programming-repl-.raku

7 lines
112 B
Raku
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
$ rakudo/perl6
> sub f($str1,$str2,$sep) { $str1~$sep x 2~$str2 };
f
> f("Rosetta","Code",":");
Rosetta::Code
>