Scripting in StreamServe > StreamServe scripting language specifics > Comments

Comments
You can comment out a line, or part of a line, using double slash (//). To comment out a whole section in a script, you can use /* to start the section and */ to end the section to comment out.
Examples
Example 29
if($ourref = "Mike Jones")      //Condition
{
$tray = "Lower tray"; //Statement
}
//Log(1,$tray);
 
Example 30
if($ourref = "Mike Jones")
{
$tray = "Lower tray";
}
/*if($ourref = "Bella Houdini")
{
$tray = "Upper tray";
}
Log(1,$tray);*/
 
OpenText StreamServe 5.6 Updated: 2013-03-01