Writing First Post

Writing First Post

ยท

1 min read

Table of contents

  • Java

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

package main

import "fmt"

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

console.log("Hello World!")
  • Python

print("Hello, world!")
  • Rust

fn main() {
    println!("Hello, world!");
}
  • Bash

echo Hello World!
ย