hello! welcome to my world!


歡迎光臨


使用pre來整理程式碼


			*定義一個文件檔案,編譯且執行後,螢幕上會出現『 Hello, World! 』字樣。
			 */
			public class HelloWorld {
				public static void main( String[] args ) {
					System.out.println( "Hello, World!" );
				}
			}
			/* 文件檔案結束 */