Why is XML::Simple Discouraged?
The real problem is that what XML::Simple primarily tries to do is take XML, and represent it as a perl data structure. As you’ll no doubt be aware from perldata the two key data structures you have available is the hash and the array. Arrays are ordered scalars. hashes are unordered key-value pairs. And XML … Read more