Play this article
If you are a beginner in learning a new programming language, then the first thing you normally do is print a string in the terminal. We normally print the most famous Hello World
in the terminal.
I am going to show the same thing to you now so that you can start writing code in Java instantly.
However, this series will be different as I will be focusing more on the video content instead of the written content. Therefore, I will simply add the YouTube Video I created just for you!
🍳Code
public class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
✅ The DISCONTINUED playlist is available on YouTube.
✔️ The DISCONTINUED repository is available on GitHub. (Make sure to ⭐ the repository).