Home
Main Introduction Features Constants Statements Database Objects Parser Serial-Communication Samples Misc
Misc>COMMENTS
Caravan Business Server>Help>Misc>COMMENTS
Syntax <CARAVAN>
...
Any number of HTML/Caravan statements can be included
...
// COMMENTS
</CARAVAN>
Text Comments in Caravan Script should be preceded by a double slash (//). The Caravan engine will ignore such comment lines.
Sample Example
<HTML>
<BODY>
<CARAVAN>
// This is a comment and will be ignored by the Caravan engine.
</CARAVAN>
</BODY>
</HTML>

Note
Please note that we have provided comments in the Examples to explain the code to you.
Back