Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
7
Task/Logical-operations/XSLT/logical-operations.xslt
Normal file
7
Task/Logical-operations/XSLT/logical-operations.xslt
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<xsl:template name="logic">
|
||||
<xsl:param name="a" select="true()"/>
|
||||
<xsl:param name="b" select="false()"/>
|
||||
<fo:block>a and b = <xsl:value-of select="$a and $b"/></fo:block>
|
||||
<fo:block>a or b = <xsl:value-of select="$a or $b"/></fo:block>
|
||||
<fo:block>not a = <xsl:value-of select="not($a)"/></fo:block>
|
||||
</xsl:template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue