Skip to content

Instantly share code, notes, and snippets.

@abscondment
Created September 8, 2011 20:33
Show Gist options
  • Save abscondment/1204589 to your computer and use it in GitHub Desktop.
Save abscondment/1204589 to your computer and use it in GitHub Desktop.
// Generated from Test.mirah
public class Test extends java.lang.Object {
public static void main(java.lang.String[] argv) {
new Test();
}
public java.lang.String baz_method() {
return "baz";
}
public Test() {
java.lang.String bar = null;
java.util.HashMap h = null;
bar = "bar";
java.util.HashMap temp$1 = null;
{
java.util.HashMap map$2000 = null;
map$2000 = new java.util.HashMap(16);
map$2000.put("foo", "foo");
map$2000.put("bar", bar);
map$2000.put("baz", self$2000.baz_method());
temp$1 = map$2000;
}
h = temp$1;
java.io.PrintStream temp$2 = java.lang.System.out;
temp$2.println("" + h);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment