Skip to content

fabianzelaya/HelloWorld-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 

Repository files navigation

🌎 "Hello, World!" Java ☕

My first "Hello, World" Java program.

A "Hello, World!" program is generally a computer program that outputs or displays the message "Hello, World!". This program is very simple to write in many programming languages, and is often used to illustrate a language's basic syntax. "Hello, World!" programs are often the first a student learns to write in a given language, and they can also be used as a sanity test to ensure computer software intended to compile or run source code is correctly installed, and that its operator understands how to use it.

Lesson: The "Hello, World!" Application

// My first Java program

public class helloWorld {
    // Output "Hello, World!" to the counsole
    public static void main(String[] args) { // Method
        System.out.println("Hello, " + args[0]);
        //System.out.println("Hello, World!");
    }
}
// FZ

// Outputs "Hello, World!"

Thanks for watching!

If you like my code then follow me on my social media. Thank you!

About

My first "Hello World" Java program in VSC

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages