Md. Fahim Bin Amin
Articles and Contents by Fahim

Follow

Articles and Contents by Fahim

Follow

Create Your First 'Hello World'!

Md. Fahim Bin Amin's photo
Md. Fahim Bin Amin
·May 15, 2023·

1 min read

Create Your First 'Hello World'!

Photo by RetroSupply on Unsplash

Play this article

Table of contents

  • 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.
  • 🍳Code

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).

 
Share this