Contents
Syntax
The syntax for
exprtk.eval{options}() exprtk.eval{options}(name)
@exprtk.eval{options}() @exprtk.eval{options}(name)
Description
The
Options
The following options are available for
option | description |
---|---|
do not return output | |
return output | |
do not round value of |
|
option | description |
f++ example
Examples of
exprtk.add_package(basicio_package) exprtk.compile(println('hello, world!')) exprtk.eval()
exprtk.add_package(basicio_package) exprtk.compile(hello, println('hello, world!')) exprtk.eval(hello)
n++ example
Examples of
@exprtk.add_package(basicio_package) @exprtk.compile(println('hello, world!')) @exprtk.eval()
@exprtk.add_package(basicio_package) @exprtk.compile(hello, println('hello, world!')) @exprtk.eval(hello)