Contents

1. Hello-World

1.1. Python

print("Hello world")

1.2. Go

package main

import "fmt"

func main() {
    fmt.Println("Hello world")
}