Skip to content

Instantly share code, notes, and snippets.

@ddmills
Last active December 8, 2015 20:45
Show Gist options
  • Save ddmills/947265cb909876052a76 to your computer and use it in GitHub Desktop.
Save ddmills/947265cb909876052a76 to your computer and use it in GitHub Desktop.
import org.paninij.lang.*;
@Capsule
public class GreeterTemplate {
@Imports Console c;
String message;
void init() {
message = "Hello";
}
@Block
public void sendMessage() {
c.write(message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment