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") +}