7 lines
156 B
Raku
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}";
|
|
}
|