Sunday, December 15, 2013

HelloWorld: JDK8 x IntelliJ IDEA 13

To create a dummy "Hello World" with newest IntelliJ IDEA 13 and JDK8 8 (Early Access Releases) on Windows 8.1.
HelloWorld: JDK8 x IntelliJ IDEA 13
HelloWorld: JDK8 x IntelliJ IDEA 13 on Windows 8.1
- Download and install IntelliJ IDEA 13.

- 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