aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-10-30 13:20:45 +0000
committerGinger Bill <bill@gingerbill.org>2016-10-30 13:20:45 +0000
commit3ec67853e1359015f516aac346760b299d261015 (patch)
treef3d87cd63e14fe1704b97431816f05dcec519fbf /code
parent09f39ae2ccea78ecd37facc5431c51e4c9666630 (diff)
Minor `Entity` refactor
Diffstat (limited to 'code')
-rw-r--r--code/demo.odin7
1 files changed, 1 insertions, 6 deletions
diff --git a/code/demo.odin b/code/demo.odin
index d714907e3..f2844f0b5 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -1,10 +1,5 @@
#import "fmt.odin"
-str := "Hellope"
-
-a: [12]u8
main :: proc() {
- v: [4]f32
- v[0] = 123
- fmt.println(str, v, v[0], a)
+
}