Skip to content

Commit

Permalink
#1 - initial go code
Browse files Browse the repository at this point in the history
  • Loading branch information
obriensystems committed Jul 28, 2024
1 parent d34b747 commit 8b31325
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module hello

go 1.22.5

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
)
9 changes: 9 additions & 0 deletions src/hello.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package main

import "fmt"
import "rsc.io/quote"

func main() {
fmt.Println("Hello, World!")
fmt.Println(quote.Go())
}

0 comments on commit 8b31325

Please sign in to comment.