Created
September 8, 2011 20:33
-
-
Save abscondment/1204589 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
// 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