Contents
Syntax
The syntax for
console{options}(params)
@console{options}(params)
Description
The
Note: If you want multiple
Note:
@console("hello, world!")!
Options
The following options are available for
option | description |
---|---|
read and output block of text following |
|
do not parse block of text | |
option | description |
f++ example
Example of
:=(int, i=12) :=(string, str="hello") console.lock console("i: ", i) console(str, ", world!") console("first line", endl, "second line") console{block} { first line second line third line } console.unlock
n++ example
Example of
@:=(int, i=12) @:=(string, str="hello") @console.lock @console("i: ", i) @console(str, ", world!") @console("first line", endl, "second line") @console{block} { first line second line third line } @console.unlock