Convert Bases
AUTHOR
stmuk
Convert between various numerical bases
#!/usr/bin/env raku
use v6;
say 0xDEADBEEF;
say 0o755;
say 493.fmt("%o");
say :16<FEEDFACE>;
say 4277009102.base(16);
# vim: expandtab shiftwidth=4 ft=perl6
stmuk
Convert between various numerical bases
#!/usr/bin/env raku
use v6;
say 0xDEADBEEF;
say 0o755;
say 493.fmt("%o");
say :16<FEEDFACE>;
say 4277009102.base(16);
# vim: expandtab shiftwidth=4 ft=perl6
Resoures
Learning
The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.