mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-18 12:30:28 +00:00
fmt.printf - Go style due to runtime type safety
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user