import com.fscript.*;
public class FScriptExample {
public static void main(String[] args) throws FSException {
Interpreter interpreter = new Interpreter();
interpreter.eval("var message = 'Hello, FScript!';");
interpreter.eval("println(message);");
}
}