hello world

This commit is contained in:
Lorenz Hohermuth 2024-09-11 16:24:59 +02:00
parent 77db57a2a0
commit 3a1a3312a7
3 changed files with 17 additions and 0 deletions

9
cmd/main.go Normal file
View File

@ -0,0 +1,9 @@
package main
import(
"fmt"
)
func main() {
fmt.Println("hello world")
}

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.lorenzzz.dev/LaunchDuck/runner
go 1.22.5

5
shell.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [ go ];
}