wip: inital commit

This commit is contained in:
2025-11-07 22:07:02 -05:00
parent 7e31286c8c
commit 28a8f65b52
3 changed files with 21 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
pike

View File

20
main.odin Normal file
View File

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