Hello World

This is an example of a simple markdown document.

Introduction

The Hello World program is often used to introduce a new programming language. It outputs the phrase Hello, World! in various programming languages.

Example Code

Here’s how you might write a Hello World program in Python:

print("Hello, World!")

In Java, it could look like this:

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

Conclusion

The Hello World program serves as a basic introduction to coding. It demonstrates the syntax of a programming language in a straightforward manner.