Skip to content

Instantly share code, notes, and snippets.

@softprops
Created August 24, 2013 23:55
Show Gist options
  • Select an option

  • Save softprops/6331072 to your computer and use it in GitHub Desktop.

Select an option

Save softprops/6331072 to your computer and use it in GitHub Desktop.
rhino shim for console logging
var console = {
log: function (msg) {
java.lang.System.out.println(msg);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment