Test of name for maybe furture development/release threads.

Heaplink

Developer & Designer
Nov 9, 2011
510
173
Sublime Text 2

Sublime Text 2 is the the best text editor you can ever get to write all kind of languages. Note that it's not for nubz that can't code n shit, because theres no Intellisense. Only for pros. Use it, hug it, LOVE IT.

Download
You can download it at .


By the way, note that it may be evaluated for free, but it states that you have to use a license purchased for continued use. Not true, there will get a freaking messagebox up on your screen when you try to save some documents, but it's not bad at all.
1326414289855755198858.png
 

Heaplink

Developer & Designer
Nov 9, 2011
510
173
public class Demo {
private static final String CONSTANT = "String";
private Object o;

/**
* Creates a new demo.
* @param o The object to demonstrate.
*/
public Demo(Object o) {
this.o = o;
String s = CONSTANT;
int i = 1;
}

public static void main(String[] args) {
Demo demo = new Demo();
}
}
 

Users who are viewing this thread

Top