/*
其实很早之前就已经接触Java了,
但是由于各种原因没能继续学习,
今天准备重新拾起Java,
写一个helloworld纪念一下,
有趣的编程世界,
I'm come in .
*/
public class MyFirstProgram{
public static void main(String[] args){
System.out.println("Hello World!");
}