Hi,
I'm trying to add data from two different text files into a same hash. An example: Text File 1 contains the words Brazil, London, England.
Text file 2 contains Brésil, Londres and Angleterre.
I would like to be able to store that data into a hash as follows:
%Hash (‘Brazil => ‘Brésil’, ‘London’ => ‘Londres’, ‘England’ => ‘Angleterre’)
and then print that hash to another text file to get:
Brazil = Brésil
London = Londres
England = Angleterre
Does any one know how this can be done?
Thanks