learning-perl6/ch3/ex3-2.raku
2023-11-12 08:33:31 -08:00

7 lines
156 B
Raku

# Take 2 arguments from command line, output their types
sub MAIN ($arg1, $arg2) {
say "arg1 type is {$arg1.^name}";
say "arg2 type is {$arg2.^name}";
}