Created
October 3, 2024 00:47
-
-
Save PramodDutta/37ae4abdebbbcf5cc2fa2b74aa78c522 to your computer and use it in GitHub Desktop.
Doubt regarding the Hello World
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Oct.ex_02102024_MainMethod; | |
public class Lab001 { | |
public static void main(String[] args){ | |
System.out.println("Hello World!"); | |
System.out.println("pramod"); | |
} | |
} |
Indentation error
Strings class not String
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
public class Lab001 {
public static void main(String[] args){
System.out.println("Hello World!");
System.out.println("pramod");
}
}
Fix this