Add go "Hello, World" example

This commit is contained in:
Oliver Davies 2025-08-05 01:29:07 +01:00
parent 361d9b85a9
commit 612571dde3
3 changed files with 9 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.direnv/

1
go/.envrc Normal file
View file

@ -0,0 +1 @@
use flake "git+https://code.oliverdavies.uk/opdavies/dev-shells#go"

7
go/hello.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, World")
}