Contents
Syntax
The syntax for
n++{options}(file-path) n++{options} { //block of n++ code }
@n++{options}(file-path) @n++{options} { //block of n++ code }
Description
The
Options
The following options are available for
option | description |
---|---|
do not return output | |
return output | |
option | description |
f++ example
Example of
- n++(./script.n)
- n++
- {
- @:=(string, str="hello, world!")
- @console(str)
- }
- n++
- {
- @for(:=(int, i=0); i<10; i+=1)
- @console("i: ", i)
- }