aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-01-08 01:10:55 +0000
committerGinger Bill <bill@gingerbill.org>2017-01-08 01:10:55 +0000
commit659e5359b2399927ffdd44d441d41a8a6e96228a (patch)
tree6357687639d2166c3913b3dfdd67b0b3fab3b9a4 /code
parentd9ce0b9da0cd1b6c76306734357e2452c30c7f4e (diff)
fmt.printf - Go style due to runtime type safety
Diffstat (limited to 'code')
-rw-r--r--code/demo.odin20
1 files changed, 17 insertions, 3 deletions
diff --git a/code/demo.odin b/code/demo.odin
index 420ce5533..1fe4c564d 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -1,7 +1,21 @@
#import "fmt.odin";
main :: proc() {
- x := "-stats";
- y := "-begin";
- fmt.println(x == y);
+ fmt.printf("%f", 123);
}
+
+/*
+Standard Library Development:
+* Formatted printf
+* The Variable
+* math
+ - Trig
+ - Random
+ - atoi
+* Memory allocation
+* File IO
+* Timing
+ - Regular and OS
+
+
+*/