Last active
August 29, 2015 13:56
-
-
Save resir014/9286104 to your computer and use it in GitHub Desktop.
The very first code I ever wrote in my Algorithm & Programming class.
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
/* | |
* @(#)NotHelloWorld.java 0.1 2014/03/21 | |
* | |
* Copyright (c) 2014 Resi Respati <[email protected]> | |
* Licensed under WTFPL. | |
* | |
*/ | |
//IMPORT DAT SHIT | |
import java.util.*; | |
//NO. THIS IS NOT HELLO WORLD. | |
public class NotHelloWorld { | |
public static void main(String [] args) { | |
System.out.println("U WOT M8"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment