I have an XML document like this:
<wii>
<game>
<type genre="arcade" />
<type genre="sport" />
</game>
<game>
<type genre="platform" />
<type genre="arcade" />
</game>
</wii>
How to list all genres without repetition using only XPath?
Thanks.