Valid on UNIX and Windows
The Print function outputs the string text to the screen.
This miscellaneous function has the format:
Print(text as String) as Boolean
Text to be printed.
The function always returns TRUE.
Example: Print function
Dim counter as integer
'Print 5 lines
For counter = 1 to 5
Print("Line " + str(counter))
Next
'Wait 5 seconds
Sleep(5000)
'Clear the print screen
ClearScreen()
Print("Screen Cleared")
|
Copyright © 2013 CA.
All rights reserved.
|
|