Initial commit

This commit is contained in:
Elnu 2023-07-14 21:39:46 -07:00
commit 1e9da0190a
4 changed files with 18 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use nix

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module ElnuDev/go-project
go 1.20

7
main.go Normal file
View file

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

7
shell.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
go
];
}