Created
August 31, 2011 02:16
-
-
Save mongrelion/1182666 to your computer and use it in GitHub Desktop.
console.log for Java <3
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
public class console { | |
public static void log( Object object ) { | |
System.out.println( object ); | |
} | |
} |
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
public class HelloWorld { | |
public static void main( String[] args ) { | |
console.log( "Hello, cruel world!" ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment