blob: 4e1a862917a9f31ff7ec9f4223d1cad0c8236a97 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<hlvm xmlns="http://hlvm.org/src/hlvm/Reader/XML/HLVM.rng" pubid="http://hlvm.org/src/hlvm/test/xml2xml/helloworld.hlx">
<bundle id="helloworld">
<constant id="0" type="s32">
<dec>0</dec>
</constant>
<constant id="hw" type="string">
<str>Hello, World</str>
</constant>
<constant id="stdout" type="string">
<str>hlvm:std:out</str>
</constant>
<program id="helloworld">
<block>
<autovar id="out" type="stream"/>
<store>
<get id="out"/>
<open>
<get id="stdout"/>
</open>
</store>
<write>
<get id="out"/>
<get id="hw"/>
</write>
<close>
<get id="out"/>
</close>
<result>
<get id="0"/>
</result>
<ret/>
</block>
</program>
</bundle>
</hlvm>