Add a basic 'hello-world' buildable with Nix

This commit is contained in:
Eli Ribble 2025-11-03 12:22:06 +00:00
parent f3205e2df6
commit 63ff66b3d9
No known key found for this signature in database
6 changed files with 115 additions and 0 deletions

7
main.go Normal file
View file

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