RosettaCodeData/Task/Gotchas/Raku/gotchas-1.raku
2023-07-01 13:44:08 -04:00

3 lines
175 B
Raku

say 123 ~ 456; # join two integers together
say "12" + "5.7"; # add two numeric strings together
say .sqrt for <4 6 8>; # take the square root of several allomorphic numerics