Files
Odin/code/demo.odin
T
2017-01-08 01:10:55 +00:00

22 lines
227 B
Odin

#import "fmt.odin";
main :: proc() {
fmt.printf("%f", 123);
}
/*
Standard Library Development:
* Formatted printf
* The Variable
* math
- Trig
- Random
- atoi
* Memory allocation
* File IO
* Timing
- Regular and OS
*/