If life had a way to conquer our mind, what would that look like? I’m not sure I quite understand what’s going on with it all, just that we have to be able to figure out what it’s doing at any given moment. I wish I could understand and grasp what it’s doing to us, but if we can’t explain that…what are we even doing here? I simply do not know. I wish I had the ability to understand and grasp what this life has in store for me, but then again I don’t think I can do that. It’s life after all, I mean come on now. What more do you want from it? Exactly.
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