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.
Last updated 11 months ago