summaryrefslogtreecommitdiff
path: root/tests/exslt/saxon/eval.2.xsl
blob: a193fdd939a58c0db9209f5ada3474b2aab07093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<xsl:stylesheet
    version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:saxon="http://icl.com/saxon"
    exclude-result-prefixes="saxon">

<xsl:output indent="yes"/>

<xsl:template match="/">
    <results>
        <xsl:value-of select="true() and saxon:expression('###')"/>
    </results>
</xsl:template>

</xsl:stylesheet>