summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2025-07-29 18:42:58 -0400
committerRobby Zambito <contact@robbyzambito.me>2025-07-29 18:54:43 -0400
commit4619d665d8fc347ff523699ca8c71ec9fadb5326 (patch)
treee797484bc52de64ac981dc7613660bdd57c15083
Initial commit
-rw-r--r--.gitignore1
-rw-r--r--README.org3
-rw-r--r--go.mod3
-rw-r--r--justfile8
-rw-r--r--main.go9
5 files changed, 24 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e660fd9
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+bin/
diff --git a/README.org b/README.org
new file mode 100644
index 0000000..96aac27
--- /dev/null
+++ b/README.org
@@ -0,0 +1,3 @@
+#+TITLE: snorvik
+
+Snorvik is a King of the Hill cybersecurity challenge
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..b7d9f60
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module git.robbyzambito.me/snorvik
+
+go 1.24.3
diff --git a/justfile b/justfile
new file mode 100644
index 0000000..b3e9b1f
--- /dev/null
+++ b/justfile
@@ -0,0 +1,8 @@
+default:
+ @just --list
+
+build:
+ go build -o bin/snorvik
+
+run: build
+ ./bin/snorvik
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..f477bbf
--- /dev/null
+++ b/main.go
@@ -0,0 +1,9 @@
+package main
+
+import (
+ "fmt"
+)
+
+func main() {
+ fmt.Println("hi")
+}