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