It allows to run scripts written in Java without calling jeval. Instead of:
jeval script.java
You can run it directly as ordinary executable file:
./script.java
For that to work you need to put following line as a first line of script.java:
#!/usr/bin/env jeval
And make file executable:
chmod u+x script.java
https://github.com/lambdaprime/jeval