![]() |
| HelloWorld: JDK8 x IntelliJ IDEA 13 on Windows 8.1 |
- Download and install JDK 8 Early Access Releases.
- Create a "Hello World" project in IntelliJ IDEA.
helloworld.java
package com.javabuddy.helloworld;
/**
* @web http://java-buddy.blogspot.com/
*/
public class helloworld {
public static void main(String[] args){
System.out.println("Hello World!");
System.out.println("running: " + System.getProperty("java.version"));
}
}

No comments:
Post a Comment