Created
June 14, 2015 20:23
-
-
Save joa/2bae89a286ce2a54928b to your computer and use it in GitHub Desktop.
This file contains 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
// java source | |
public static void main(String[] args) { | |
for(int i = 0; i < 10; ++i) { | |
System.out.println(Color.normalize(255)); | |
System.out.println(i); | |
} | |
} | |
// defrac js | |
main = function(args){ | |
var _0, _1; | |
defrac_util_Color.lazyclinit; | |
_0 = java_lang_System.out; | |
_1 = 0; | |
while(_1 < 10) { | |
_0.println_F_V(1); | |
_0.println_I_V(_1); | |
_1 = _1 + 1 | 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment