Problem:
I have the following source code below:
package com.gavin;
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World !");
}
This code returns me an error “reached end of file while parsing java”
What could be a possible solution in my case?