Wie «sagt» man ‘Hallo Welt’ Link to heading

Es gibt viele Möglichkeiten, “Hallo Welt” zu sagen.

Neben Deutsch ist python:

# python

def hello_world():
    print("Hello World!")

hello_world()

Und der andere ist go:

// go

package main

import(
    "fmt"
)

func main(){
    fmt.Println("Hallo Welt")
}