diff options
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 + + +*/ |