Created
October 3, 2022 19:56
-
-
Save rmg007/b0e23dabe2a04bd3b3c4e5df262aba81 to your computer and use it in GitHub Desktop.
Learn and dive deep into Java. Where to write Java code lecture
This file contains 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
public class FirstProgram { | |
public static void main(String[] args) { | |
System.out.println("Hello World"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
public class FirstProgram {
public static void main(String[] args) {
System.out.println("Hello World");
}
}