From 28a8f65b527ccd9d401a6a2676a8114efa0bda71 Mon Sep 17 00:00:00 2001 From: "owestness@gmail.com" Date: Fri, 7 Nov 2025 22:07:02 -0500 Subject: [PATCH] wip: inital commit --- .gitignore | 1 + LICENSE => COPYING | 0 main.odin | 20 ++++++++++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 .gitignore rename LICENSE => COPYING (100%) create mode 100644 main.odin diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bb27425 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +pike diff --git a/LICENSE b/COPYING similarity index 100% rename from LICENSE rename to COPYING diff --git a/main.odin b/main.odin new file mode 100644 index 0000000..2e440f6 --- /dev/null +++ b/main.odin @@ -0,0 +1,20 @@ +// SPDX-License-Identifer: MIT +/* + * main.odin + * + * pike pre-alpha + * + * Written by TiredWithJoy + * Written by vx-clutch + * + * This file contains the main driving + * routine, and some game code. + */ + +package main + +import "core:fmt" + +main :: proc() { + fmt.println("pike init") +}