go-learning/tour_of_go/l1/hello.go

11 lines
118 B
Go
Raw Permalink Normal View History

2025-08-30 12:55:18 +00:00
package main
import "fmt"
import "rsc.io/quote"
func main() {
fmt.Println("Hello Go!")
fmt.Println(quote.Go())
}