mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-16 10:52:22 -07:00
22 lines
227 B
Odin
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
|
|
|
|
|
|
*/
|