Hello World Run Error

Answered

Hello,

i am new to programming and my hello world is not running as expected. i would appreciate all your help so that i understand what im dealing with. Below is the error message after the run. i have also included the code further below.

Information:java: Errors occurred while compiling module 'HelloWorld!'
Information:javac 1.8.0_171 was used to compile java sources
Information:10/05/2018 10:35 AM - Compilation completed with 1 error and 0 warnings in 3 s 439 ms
C:\Users\eszladmin\IdeaProjects\HelloWorld!\src\com\example\helloworld\HelloWorld.java
Error:Error:line (7)java: reached end of file while parsing

 

package com.example.helloworld;

public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");

}
0
1 comment

Closing curly brace `}` is missing at the end of file.

0

Please sign in to leave a comment.