Skip to content
On this page

GO笔记

基本语法

第一个程序 Hello world

go
package main

import "fmt"

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