That’s right…I wrote a Java app and extended HelloWorld with HelloWorld++. I introduce you to…the newest version of HelloWorld…in Java. {insert dramatic music}
bq. package com.llnw.training;
/**
*
* @author johnb
* @version 1.1
*/
public class Main {
public static void main(String[] args){
System.out.print(“Hello World”);
if(args.length > 0){
System.out.print(“\nand hi ” + args[0]);
}
}
}
Hooah! 🙂 Ok…this isn’t my first, per se. I built HelloWorld first then HelloWorld++ was the v1.1. hehe.
Some serious/full posts will come soon (post-training).