No Reason Kyle Eggleston I’ve come to the conclusion that there’s no reason to be alive. There’s no actual purpose to it. Why should there be a purpose to all this suffering and death. It doesn’t make any sense. There’s no reason for it at all. Step out of the box once in a while and see for yourself there’s nothing to be seen. If there’s nothing to be seen, then there’s nothing to be understood and we are good.
Ah The first program that everyone tends to write when learning a new programming language is Hello World. So, what is Hello World? Hello World is a simple program that simplay outputs the words "Hello World".
In Java we would write this as follows:
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
It's that simple. If you haven't guessed yet, here's the output of the file:
Hello World
Comments
Post a Comment