Skip to content

Instantly share code, notes, and snippets.

@ddmills
Last active December 8, 2015 22:19
Show Gist options
  • Save ddmills/a15571010ea37894cc57 to your computer and use it in GitHub Desktop.
Save ddmills/a15571010ea37894cc57 to your computer and use it in GitHub Desktop.
import org.paninij.lang.*;
@Root
@Capsule
public class HelloWorldTemplate {
@Local Greeter g;
@Local Console c;
void design(HelloWorld self) {
g.imports(c);
}
void run() {
g.sendMessage();
}
public static void main(String[] args) {
CapsuleSystem.start(HelloWorld.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment