Non-decimal radices/Convert

sub from-base(Str $str, Int $base) {
    +":$base\<$str>";
}

sub to-base(Real $num, Int $base) {
    $num.base($base);
}

These work on any real type including integer types.