예:
Object obj = engine.eval("""
function hello() {
print('"Hello, world"');
}
hello();
""");
빠른 수정 적용 후:
Object obj = engine.eval("function hello() {\n" +
" print('\"Hello, world\"');\n" +
"}\n" +
"\n" +
"hello();\n");
2019.3의 새로운 기능