Reputation:
Previously i was using Intellij15 where the scratch file feature introduced and it was successfully execute java code there. But after upgrading to intellij16 i unable to execute scrach file of type java. Can someone tell me a way to work in intellij16
Upvotes: 1
Views: 1094
Reputation: 18867
Scratch files run fine for me on Intellij IDEA 2016.3
Steps followed:
class Blah{
public static void main(String[] args){
System.out.println("Blah");
}
}
See this in action below:
Upvotes: 1