This commit is contained in:
2026-02-23 23:10:39 +01:00
parent 77ef8a0f8c
commit 892242366b
3 changed files with 20 additions and 3 deletions

View File

@@ -1,7 +1,11 @@
package main
import "fmt"
import (
"fmt"
"rsc.io/quote"
)
func main() {
fmt.Println("Hello World!")
fmt.Println(quote.Go())
}