HOW TO WRITE "HELLO WORLD !" IN JAVA with CODE MODE




Hello Coders !!!

Today, I'm going to start a full series of small JAVA Projects to enlighten JAVA basics and make you understand by writing codes and executing them.

So, Let's start with today's topic 'HOW TO WRITE "HELLO WORLD !" IN JAVA' 

For Executing the code I'm going to use a website called replit.com , to run your code on replit.com just visit the website and sign-up. Then click on 'new repl' and select your language that is JAVA and it is ready to write your first code.

Here's the Code !

class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

/* If you aren't able to see full code on your mobile device, just rotate your screen to landscape mode. */

This is how you write "Hello World !" in JAVA. Just visit the website replit.com and start coding.

Hope you like it. Stay Tuned, A lot more series of small JAVA projects are coming.

Don't forget to see our next project posting every other day.

Give your Love & Support. 

HAPPY CODING !!!










Comments

Popular posts from this blog

list of 10 UX problem-solving interview questions

How to Code for Method Overriding in JAVA