<xslTutorial creator="nicmila@idoox.com">
<index keywords='true() not()'/>

<description>
Functions true() and false() are useful, when some conditions are tested during programming.
</description>

<xmlSource id="id1">
<number>0</number>
<number>1</number>
</xmlSource>

<attValues>
<value match=''></value>
</attValues>

<xslStylesheet id="id2">
<xsl:template match="number">
<P>

<xsl:if test="true()">
<xsl:text>true </xsl:text></xsl:if>
<xsl:if test="not(false())">
<xsl:text>not false</xsl:text> 
</xsl:if>

</P>
</xsl:template>
</xslStylesheet>
</xslTutorial>