stl + brainfuck sample program

This commit is contained in:
2022-02-24 13:29:37 +01:00
parent 2c49433887
commit cee371a2a2
7 changed files with 738 additions and 102 deletions

View File

@@ -3,14 +3,18 @@
<if>
<integer value="1" />
<then>
<print>
<string value="TRUE" />
</print>
<call function="print">
<arguments>
<string value="TRUE" />
</arguments>
</call>
</then>
<else>
<print>
<call function="print">
<arguments>
<string value="FALSE" />
</print>
</arguments>
</call>
</else>
</if>
</main>