Hello Reader,
welcome to my blog. Here you will learn Java and J2EE technology in a easy way.
First Java Simple Program
package com.first;
public class FirstApp {
public static void main(String[] args) {
System.out.println("Hello Java");
System.out.println("Welcome to Ramu Chintha!!");
}
}
|
Output: