golang introductory tutorial (a) Hello World


Before you start writing code, we've golang language development environment to build good, we can begin to learn code. We can start with the most simple Hello world

package main

import (
	"fmt"
)

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

Guess you like

Origin blog.csdn.net/wwj791859814/article/details/46432047