diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-01-08 01:10:55 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-01-08 01:10:55 +0000 |
| commit | 659e5359b2399927ffdd44d441d41a8a6e96228a (patch) | |
| tree | 6357687639d2166c3913b3dfdd67b0b3fab3b9a4 /code | |
| parent | d9ce0b9da0cd1b6c76306734357e2452c30c7f4e (diff) | |
fmt.printf - Go style due to runtime type safety
Diffstat (limited to 'code')
| -rw-r--r-- | code/demo.odin | 20 |
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 + + +*/ |