Last active
December 8, 2015 20:45
-
-
Save ddmills/947265cb909876052a76 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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