This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
go-book/hello/helloworld.go

8 lines
73 B
Go
Raw Normal View History

2024-08-13 20:31:39 +02:00
package main
import "fmt"
func main() {
fmt.Println("hello 世界")
}