Files
plxml/sample/if.pl.xml
2022-02-24 13:29:37 +01:00

21 lines
537 B
XML

<program>
<main>
<if>
<integer value="1" />
<then>
<call function="print">
<arguments>
<string value="TRUE" />
</arguments>
</call>
</then>
<else>
<call function="print">
<arguments>
<string value="FALSE" />
</arguments>
</call>
</else>
</if>
</main>
</program>