fmt.printf - Go style due to runtime type safety

This commit is contained in:
Ginger Bill
2017-01-08 01:10:55 +00:00
parent d9ce0b9da0
commit 659e5359b2
3 changed files with 791 additions and 435 deletions

View File

@@ -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
*/