en:code:core:stdio
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| en:code:core:stdio [2011/04/20 20:42] – code:core:stdio renamed to en:code:core:stdio jmgr | en:code:core:stdio [2021/02/13 11:23] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 20: | Line 20: | ||
| <code javascript> | <code javascript> | ||
| Stdio.print(" | Stdio.print(" | ||
| + | </ | ||
| + | |||
| + | ==== println ==== | ||
| + | Writes a line to the standard output. | ||
| + | A new line character is automatically added. | ||
| + | |||
| + | //Added in Actionaz 3.0.1.// | ||
| + | |||
| + | === Syntax === | ||
| + | <code javascript> | ||
| + | Stdio.println(text); | ||
| + | </ | ||
| + | |||
| + | === Arguments === | ||
| + | - text - (string) the text to write | ||
| + | |||
| + | === Returns === | ||
| + | * (Stdio) this Stdio | ||
| + | |||
| + | === Example === | ||
| + | <code javascript> | ||
| + | Stdio.println(" | ||
| </ | </ | ||
| Line 39: | Line 61: | ||
| <code javascript> | <code javascript> | ||
| Stdio.printWarning(" | Stdio.printWarning(" | ||
| + | </ | ||
| + | |||
| + | ==== printlnWarning ==== | ||
| + | Writes a line in the standard output using a warning prefix. | ||
| + | A new line character is automatically added. | ||
| + | |||
| + | //Added in Actionaz 3.0.1.// | ||
| + | |||
| + | === Syntax === | ||
| + | <code javascript> | ||
| + | Stdio.printlnWarning(text); | ||
| + | </ | ||
| + | |||
| + | === Arguments === | ||
| + | - text - (string) the text to write | ||
| + | |||
| + | === Returns === | ||
| + | * (Stdio) this Stdio | ||
| + | |||
| + | === Example === | ||
| + | <code javascript> | ||
| + | Stdio.printlnWarning(" | ||
| </ | </ | ||
| Line 58: | Line 102: | ||
| <code javascript> | <code javascript> | ||
| Stdio.printError(" | Stdio.printError(" | ||
| + | </ | ||
| + | |||
| + | ==== printlnError ==== | ||
| + | Writes a line in the standard output using an error prefix. | ||
| + | A new line character is automatically added. | ||
| + | |||
| + | //Added in Actionaz 3.0.1.// | ||
| + | |||
| + | === Syntax === | ||
| + | <code javascript> | ||
| + | Stdio.printlnError(text); | ||
| + | </ | ||
| + | |||
| + | === Arguments === | ||
| + | - text - (string) the text to write | ||
| + | |||
| + | === Returns === | ||
| + | * (Stdio) this Stdio | ||
| + | |||
| + | === Example === | ||
| + | <code javascript> | ||
| + | Stdio.printlnError(" | ||
| </ | </ | ||
en/code/core/stdio.1303332174.txt.gz · Last modified: (external edit)
