aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
Diffstat (limited to 'code')
-rw-r--r--code/demo.odin10
1 files changed, 1 insertions, 9 deletions
diff --git a/code/demo.odin b/code/demo.odin
index 9f9658e08..57052d66d 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -2,16 +2,8 @@
#import "utf8.odin"
#import "hash.odin"
#import "mem.odin"
-
-
+#import "game.odin"
main :: proc() {
- Vec3 :: struct {
- x, y: i16
- z: int
- }
- z := 123
- v := Vec3{x = 4, y = 5, z = z}
- fmt.println(v)
}