parasmamgain / hello-world

0 stars 0 forks source link

missing semicolong #19

Open parasmamgain opened 3 months ago

parasmamgain commented 3 months ago

semicolon missing the java file hello_world.java at line number 77

git-guru-pm[bot] commented 3 months ago

Missing Semicolon in hello_world.java

Line: 77

Problem: A semicolon is missing at the end of the line. This syntax error prevents the code from compiling correctly.

Solution:

Add a semicolon (;) at the end of the line.

Example:

java<br />// Line 76<br />someVariable = someValue; // Line 77<br />// Line 78<br />

Helpful Links:

Java Syntax Errors: https://docs.oracle.com/javase/tutorial/java/nutsandbolts/errors.html
Semicolon in Java: https://www.geeksforgeeks.org/semicolon-in-java/