You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
141 B
Raku

use integer;
$value = 257;
while($value) {
unshift @digits, (0 .. 9, a .. f)[$value & 15];
$value /= 16;
}
print @digits;