Skip to content

Commit b32fea3

Browse files
Add hello world Go app
Co-authored-by: bool <bolaji.olajide@sourcegraph.com>
1 parent cdf7e15 commit b32fea3

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/sourcegraph-testing/markdowns
2+
3+
go 1.22

main.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package main
2+
3+
import "fmt"
4+
5+
func main() {
6+
fmt.Println("Hello, world!")
7+
}

0 commit comments

Comments
 (0)