Hello World!

This my first ever post, and it’s about writing “Hello World!” in different languages!

Rust

fn main() {
    println!("Hello World!");
}

C++

#include <iostream>

int main() {
    std::cout << "Hello World!";
}

Python

print("Hello World!")

Golang

package main

import "fmt"

func main() {
    fmt.Println("Hello World!")
}