The March Perl challenge by Tony Gasparovic

THE CHALLENGE:

   Decode 10 famous quotes.



DETAILS:

The provided data DATA file contains five different data types separated by semicolons. 

   decimal
   hexadecimal
   octal
   binary
   roman numerals

   You will have to convert each data type to a ASCII character CODE and print each line to the screen.


   Example: 

   The first character of each field describes the data type: d->decimal o->octal  h->hex  b->binary  r->roman numeral


   This example converts to: 'test'

    t     e   s      t
   o164;d101;rCXV;b01110100

    t    e    e   t
   h74;o145;d115;o164