GolangStudy/day3/hello.go

8 lines
73 B
Go
Raw Normal View History

2022-10-22 01:21:54 +08:00
package main
import "fmt"
func main() {
fmt.Println("hello world!")
}