Skip to content

Instantly share code, notes, and snippets.

@schup
schup / Engine.java
Created April 16, 2013 17:27
Implementing an Interface in Groovy and using it in Java through javax.script / JSR-223
// Engine.java
public interface Engine {
void start();
void stop();
}