From 479708e2d32ea669e7d7a38cc55f2618aa4164e3 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Sun, 5 Oct 2025 11:03:49 -0400 Subject: [PATCH] Move the initial code into a new subdir as the first offering. --- .gitignore => 00_first_hack/.gitignore | 0 Makefile => 00_first_hack/Makefile | 0 go.mod => 00_first_hack/go.mod | 0 go.sum => 00_first_hack/go.sum | 0 main.go => 00_first_hack/main.go | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename .gitignore => 00_first_hack/.gitignore (100%) rename Makefile => 00_first_hack/Makefile (100%) rename go.mod => 00_first_hack/go.mod (100%) rename go.sum => 00_first_hack/go.sum (100%) rename main.go => 00_first_hack/main.go (100%) diff --git a/.gitignore b/00_first_hack/.gitignore similarity index 100% rename from .gitignore rename to 00_first_hack/.gitignore diff --git a/Makefile b/00_first_hack/Makefile similarity index 100% rename from Makefile rename to 00_first_hack/Makefile diff --git a/go.mod b/00_first_hack/go.mod similarity index 100% rename from go.mod rename to 00_first_hack/go.mod diff --git a/go.sum b/00_first_hack/go.sum similarity index 100% rename from go.sum rename to 00_first_hack/go.sum diff --git a/main.go b/00_first_hack/main.go similarity index 100% rename from main.go rename to 00_first_hack/main.go