So, I was watching Smallville (what else is new I know), and Lionel dies??? It was a WTF moment for sure! Lex just upped and pushed him out the window! WOW I was not expecting that! I mean maybe I should have seen it coming? I’m sure the clues have been there all along, it’s been building up to…something? But this? I, I was shocked to say the least! Lionel was starting to grow on me. But if he’s dead? Who knows what will happen next. Part of me is wondering if he was a clone. If he actually faked his death, or had his clone confront Lex because he knew Lex would do something to kill him? I’m not sure. But then again, why would the clone be wearing the locket with the key? So many unanswered questions! On to the next episode!
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