|
|
|
|
|
by rsobers
5055 days ago
|
|
The reason I dislike Java is because the barrier to entry is so high for beginners. public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}
First, you need to wrestle with Eclipse. Then you need to figure out things like class and void and static and public before you can event print something to the screen. Ugh. So...much...syntax. |
|