digits: egyptian hieroglyphs numerals
[sheet.git] / base.plp
index 2deabf517c9968ab8e2ad84bb5fed124a284788b..f1ed06cfa42265c32a2719ae78819896a7e4a55e 100644 (file)
--- a/base.plp
+++ b/base.plp
@@ -2,7 +2,7 @@
 
 Html({
        title => 'number bases',
-       version => 'v1.1',
+       version => '1.1',
        description => [
                "Cheat sheets summarising various software programs and standards.",
        ],
@@ -13,7 +13,7 @@ Html({
 });
 
 my @cols = (2, 6, 8, 9, 10, 12, 16, 18, 20);
-my @morecols = (2, 3, 4, 6, 8, 9, 10, 12, 16, 18, 20, 24, 32, 36, 64);
+my @morecols = (2 .. 6, 8, 9, 10, 12, 16, 18, 20, 24, 32, 36, 64);
 my @char = (0..9, 'A'..'Z', 'a'..'z');
 :>
 <h1>Number bases</h1>
@@ -97,7 +97,6 @@ for my $n (2 .. $count) {
 <h2>Duplication (2ⁿ)</h2>
 <table>
 <:
-use 5.010;
 sub showint {
        my ($int, $radix) = @_;
        my @digits;