CGI_Write
<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > CGI > CGI_Write |
Description
Writes data to StdOut.
Syntax
n = CGI_Write(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
An alias of CGI_Write is the function Echo.
Restrictions
See also
Examples
CGI_Write("Hello World!") 'result: Hello World!