Add go "Hello, World" example
This commit is contained in:
parent
361d9b85a9
commit
612571dde3
3 changed files with 9 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.direnv/
|
1
go/.envrc
Normal file
1
go/.envrc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
use flake "git+https://code.oliverdavies.uk/opdavies/dev-shells#go"
|
7
go/hello.go
Normal file
7
go/hello.go
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
fmt.Println("Hello, World")
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue