DEV Community

Cover image for Exploring "Hello, World!" in Different Programming Languages
kiraaziz
kiraaziz

Posted on

Exploring "Hello, World!" in Different Programming Languages

"Hello, World!" is perhaps the most famous phrase in the world of programming. It serves as a simple yet significant introduction to any programming language. Whether you're a seasoned developer or a complete beginner, creating a "Hello, World!" program in various languages is a fun and educational exercise. In this blog post, we'll take a tour of several programming languages and learn how to print this classic message in each of them.

1. Python

Let's start with one of the most beginner-friendly languages, Python. To print "Hello, World!" in Python, open a text editor and enter the following code:

print("Hello, World!")
Enter fullscreen mode Exit fullscreen mode

Save the file with a ".py" extension and execute it using the Python interpreter. You should see the message displayed in your console.

2. Java

Java is known for its platform independence. Here's how you can create a "Hello, World!" program in Java:

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

Compile this code using the Java compiler and run the resulting class file.

3. JavaScript

JavaScript is the language of the web, and it's executed in web browsers. You can print "Hello, World!" to the browser's console with this code:

console.log("Hello, World!");
Enter fullscreen mode Exit fullscreen mode

Open your web browser's developer console (usually with F12 or right-clicking and selecting "Inspect"), navigate to the "Console" tab, and you'll see the message.

4. Ruby

Ruby is known for its simplicity and readability. To print "Hello, World!" in Ruby, use the following code:

puts "Hello, World!"
Enter fullscreen mode Exit fullscreen mode

Save the file with a ".rb" extension and run it using the Ruby interpreter.

5. C

C is a low-level programming language with a rich history. Here's how you can print "Hello, World!" in C:

#include <stdio.h>

int main() {
    printf("Hello, World!\n");
    return 0;
}
Enter fullscreen mode Exit fullscreen mode

Compile the code with a C compiler, and you'll have your "Hello, World!" program ready to run.

6. PHP

PHP is widely used for web development. To print "Hello, World!" in PHP, you can create a simple script:

<?php
echo "Hello, World!";
?>
Enter fullscreen mode Exit fullscreen mode

Save this code with a ".php" extension and run it on a web server with PHP support.

7. Swift

Swift is Apple's programming language for iOS and macOS development. Here's how you can print "Hello, World!" in Swift:

import Swift

print("Hello, World!")
Enter fullscreen mode Exit fullscreen mode

Save the code with a ".swift" extension and use the Swift compiler to run it.

8. Go

Go, also known as Golang, is known for its performance. Here's how to print "Hello, World!" in Go:

package main

import "fmt"

func main() {
    fmt.Println("Hello, World!")
}
Enter fullscreen mode Exit fullscreen mode

Save the code with a ".go" extension and use the Go compiler to run it.

9. Kotlin

Kotlin is a modern language compatible with Java. To print "Hello, World!" in Kotlin, create a file with a ".kt" extension containing this code:

fun main() {
    println("Hello, World!")
}
Enter fullscreen mode Exit fullscreen mode

Compile and run it using the Kotlin compiler.

Conclusion

No matter which programming language you choose, the "Hello, World!" program is an essential step in your coding journey. It helps you become familiar with the language's syntax and gives you a sense of accomplishment as you see the message displayed on your screen. So, whether you're starting with Python's simplicity or diving into the intricacies of C, remember that "Hello, World!" is your first step towards becoming a proficient programmer in any language. Happy coding!

Top comments (0)