Inspiration
Wrote "hello world!" in a new programming language.
What it does
Displays "hello world!" on the screen.
What I learned
1.Class definition
- Main method: In Java, every application must contain a main method whose signature is:
public static void main(String[] args) System.out.println("Hello, World");This line outputs the string “Hello, World” followed by a new line on the screen.
Log in or sign up for Devpost to join the conversation.