<xsl:template match="/">
<xsl:call-template name="loop">
<xsl:with-param name="Count">5</xsl:with-param>
</xsl:call-template>
</xsl:template>
<xsl:template name="loop">
<xsl:param name="Count"/>
<xsl:if test="$Count<1"><xsl:value-of select="'finish'"/></xsl:if>
<xsl:if test="$Count>=1">
<xsl:value-of select="$Count"/>
<xsl:call-template name="loop">
<xsl:with-param name="Count"><xsl:value-of select="number($Count)-1"/></xsl:with-param>
</xsl:call-template>
</xsl:if>
</xsl:template>