Sign in
apache
/
casbin-jcasbin-aviatorscript
/
fd292fb2e7989420b53e1dda4927a4fd6206571f
/
.
/
src
/
test
/
java
/
com
/
googlecode
/
aviator
/
example
/
SimpleExample.java
blob: b174e563158b5d0a527b970094130bc432607353 [
file
] [
log
] [
blame
]
package
com
.
googlecode
.
aviator
.
example
;
import
com
.
googlecode
.
aviator
.
AviatorEvaluator
;
public
class
SimpleExample
{
public
static
void
main
(
String
[]
args
)
{
Long
result
=
(
Long
)
AviatorEvaluator
.
execute
(
"1+2+3"
);
System
.
out
.
println
(
result
);
}
}