Initial data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 72d218235f
commit f23f22d71c
199087 changed files with 3378941 additions and 0 deletions

View file

@ -0,0 +1,5 @@
<xsl:template name="multiply">
<xsl:param name="a" select="2"/>
<xsl:param name="b" select="3"/>
<xsl:value-of select="$a * $b"/>
</xsl:template>

View file

@ -0,0 +1,6 @@
<xsl:call-template name="multiply">
<xsl:with-param name="a">4</xsl:with-param>
<xsl:with-param name="b">5</xsl:with-param>
</xsl:call-template>
<xsl:call-template name="multiply"/> <-- using default parameters of 2 and 3 -->

View file

@ -0,0 +1,5 @@
<xsl:function name="mf:multiply">
<xsl:param name="a"/>
<xsl:param name="b"/>
<xsl:value-of select="$a * $b"/>
</xsl:function>

View file

@ -0,0 +1,2 @@
{mf:multiply(2,3)}
<xsl:value-of select="mf:multiply(2,3)" />