stdout
From the SETL Wiki
| stdout | |
|---|---|
| Category | I/O |
| Syntax | constant |
| Compatibility | |
| CIMS SETL | no |
| SETL-S | no |
| SETL2 | no |
| GNU SETL | yes |
Contents |
Purpose
Standard output handle
Synopsis
stdout
Description
A predefined handle that refers to the standard output stream of the current process.
Examples
- nprinta(stdout, x); is equivalent to nprint(x);
- puta(stdout, x); is equivalent to put(x);
- putc(stdout, c); is equivalent to putchar(c);
etc.

