11 lines
118 B
Go
11 lines
118 B
Go
![]() |
package main
|
||
|
|
||
|
import "fmt"
|
||
|
import "rsc.io/quote"
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println("Hello Go!")
|
||
|
fmt.Println(quote.Go())
|
||
|
}
|
||
|
|