How to «Say» ‘Hello World’ Link to heading
There are a lot of ways to say “Hello World” in languages.
Beside english one is python:
# python
def hello_world():
print("Hello World!")
hello_world()
And the other one is go:
// go
package main
import(
"fmt"
)
func main(){
fmt.Println("Hello World!")
}