Skip to content

Instantly share code, notes, and snippets.

@halfdan
Created February 27, 2012 18:16
Show Gist options
  • Save halfdan/1925936 to your computer and use it in GitHub Desktop.
Save halfdan/1925936 to your computer and use it in GitHub Desktop.
Simple Ninja class
public class Main extends Object {
public static void main() {
local Integer x;
local Integer y;
x = 42.add(23);
y = 42.add(23);
System.writeInteger(x);
System.writeInteger(y);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment