static void SetRetrievableString( String s )
String s
A reference to the String object.
This method instructs the Runtime class to store a reference to a String object for retrieval at a later time. Use the method Runtime.GetRetrievableString to retrieve a reference to the String object.
start PerformCalculation( x, y );
Runtime.SetRetrievableString( "Note: calculation is multiplication" );
return x * y;
finish;
x = 2;
y = 5;
z = PerformCalculation( x, y );
print z;
print (Runtime.GetRetrievableString());