Table of Content
HAL Forum
Introduction
What is HAL?
Get Started
Language Reference
Declarations, assignments and statements
Keywords and operations
Tutorials
Change a window
Find the window
Modify the window
Create a report
HAL Primitives
HAL Procedures/Functions
HAL Discussions
procedure
Trace
(
string
Str1
,
string
Str2
)
Description:
Displays both of the string parameters as a message on the screen
Parameters:
Str1
First string
Str2
Second string
global procedure INSpecsm() begin string 20 tstr; tstr = "World"; Trace("Hello",tstr); return; end;
Related topics:
««