PRINT

System Testing Supervisor Script Language.

Purpose

The PRINT instruction prints <argument> to the supervision script execution log file without a carriage return or line feed.

Syntax

PRINT <argument>

where:

  1. <argument> is a string or a variable that points to a string

Description

The PRINT instruction does not cause a carriage return or line feed after printing the value of <argument>.

<argument> can be a string constant, delimited by quote double-quotes, or a variable integer value used in the scenario.

If <argument> uses an unknown variable, the scenario execution exits with an error message.

Example

var_i = 25

PRINT "value of var_i "

PRINT var_i

Related Topics

PRINTLN