Why must life be this way? I don’t understand it. If we lived in a utopia, things might be better; but I’m not sure about that. I wish there was some kind of something to overcome this feeling of inadequacy. I doubt I will ever fully figure it out. If I had the ability, I would do it in a second. But I don’t seem to have that ability at the moment. Maybe one day I will be able to figure it all out.
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