hello world!

This commit is contained in:
Amolith 2021-09-17 10:45:27 -04:00
parent e00b094777
commit b4e1c9f1bb
Signed by: Amolith
GPG Key ID: 5548AD9930655715
3 changed files with 27 additions and 0 deletions

10
go.mod Normal file
View File

@ -0,0 +1,10 @@
module git.nixnet.services/Amolith/messing-with-go
go 1.17
require rsc.io/quote v1.5.2
require (
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c // indirect
rsc.io/sampler v1.3.0 // indirect
)

6
go.sum Normal file
View File

@ -0,0 +1,6 @@
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c h1:qgOY6WgZOaTkIIMiVjBQcw93ERBE4m30iBm00nkL0i8=
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
rsc.io/quote v1.5.2 h1:w5fcysjrx7yqtD/aO+QwRjYZOKnaM9Uh2b40tElTs3Y=
rsc.io/quote v1.5.2/go.mod h1:LzX7hefJvL54yjefDEDHNONDjII0t9xZLPXsUe+TKr0=
rsc.io/sampler v1.3.0 h1:7uVkIFmeBqHfdjD+gZwtXXI+RODJ2Wc4O7MPEh/QiW4=
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=

11
hello.go Normal file
View File

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