say i have this given xml file
<root>
<node>x</node>
<node>y</node>
<node>a</node>
</root>
and i want the following to be displayed
ayx
using something similar to
<xsl:template match="/">
<xsl:apply-templates select="root/node"/>
</xsl:template>
<xsl:template match="node">
<xsl:value-of select="."/>
</xsl:template>