blob: f1bc9a65905a7416bf05f3440ed88da1be0fe2e8 [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/return0/helloworld.hlx">
<bundle id="helloworld">
<constant id="hw" type="string">
<str>Hello, World&#10;</str>
</constant>
<constant id="stdout" type="string">
<str>hlvm:std:out</str>
</constant>
<constant id="zero" type="s32">
<dec>0</dec>
</constant>
<program id="helloworld">
<block>
<autovar id="out" type="stream"></autovar>
<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="zero"/>
</result>
<ret/>
</block>
</program>
</bundle>
</hlvm>