RosettaCodeData/Task/Function-definition/XSLT/function-definition-1.xslt

6 lines
152 B
HTML
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
<xsl:template name="multiply">
<xsl:param name="a" select="2"/>
<xsl:param name="b" select="3"/>
<xsl:value-of select="$a * $b"/>
</xsl:template>