Echo
<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > CGI > Echo |
Description
The Echo() function writes data to Stdout.
Syntax
n = Echo(sText)
Returns
Returns a number
The numbers of characters written to Stdout or zero if the function fails.
Parameters
Name |
Type |
Optional |
Meaning |
sText |
String |
No |
The string to write to stdout. |
Remarks
Echo is an alias of CGI_Write function.
Restrictions
See also
Examples
Echo("Hello World!") 'result: Hello World!