I'm trying to create a hash of arrays where i read the data from input. The data is to be read in single lines where the data is split up by ::= the left side of the ::= is to be the key and the right side of the ::= to be the value stored in the array for that key.
e.g. <s> ::= <blah>
<r> ::= <blah2>
i want <s> and <r> to be the keys and and blah stored in <s>'s array and <blah2> in <r>'s array.
thanks for any help u can provide.