in reply to (Golf) Ascii table

63, plus one for the -l, gives me 64:
perl -le'print" ",$,=$",@_=(0..9,A..F);print$_."0:",map chr$a++,@_ for@_'

Update: Welp, it's pretty trivial to trim a character off that, making it 63:
perl -le'print$,=$",$,,@_=(0..9,A..F);print$_."0:",map chr$a++,@_ for@_'

blokhead

Replies are listed 'Best First'.
Re: Re: (Golf) Ascii table
by antirice (Priest) on Aug 16, 2003 at 05:12 UTC

    Very nice. :)

    antirice    
    The first rule of Perl club is - use Perl
    The
    ith rule of Perl club is - follow rule i - 1 for i > 1