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);
}
}