Warning: Use of undefined constant user_level - assumed 'user_level' (this will throw an Error in a future version of PHP) in /home/xdsse/public_html/wp-content/plugins/ultimate-google-analytics/ultimate_ga.php on line 524
SO I FINALLY got into the spirit of coding Java, I know I know I have been talking about taking this up since the last time I wrote a line back at the university but now the time has come. As one always do when facing a new language or one you haven’t touched in quite some time, I picked up an editor and wrote my Hello World!
FIRST OF ALL I had forgotten all about that main declaration but when I got that one if kind of created itself.
public class Hello {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
Now, isn’t that sweet?
NOW, my next focus is expand this little hello world with some packaging, external data from file and how about some nifty try and catch slapped all over it?