Skip to content

Instantly share code, notes, and snippets.

@resir014
Last active August 29, 2015 13:56
Show Gist options
  • Save resir014/9286104 to your computer and use it in GitHub Desktop.
Save resir014/9286104 to your computer and use it in GitHub Desktop.
The very first code I ever wrote in my Algorithm & Programming class.
/*
* @(#)NotHelloWorld.java 0.1 2014/03/21
*
* Copyright (c) 2014 Resi Respati <resir014@gmail.com>
* 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