Go语言

110 阅读1分钟

第一课 Hello World

package main

import "fmt"

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