<xs:complexType name="commenttype" mixed="true" >
<xs:sequence>
<xs:any namespace="##any" processContents="skip" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
The comment element allows the programmer to include comment blocks and documentation in the source code. The comment may appear in any flow-function or IKO as the first element. Comment elements are parsed but not validated or evaluated.
<instruction xmlns="http://www.obyx.org" note="Display Hello World" >
<comment>
This is a comment element.
It allows the programmer to document the source code.
</comment>
<input>
<comment>
Comments are also allowed in all iko elements.
</comment>
Hello World
</input>
</instruction>
Hello World