mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-21 21:24:59 -07:00
10 lines
180 B
Odin
10 lines
180 B
Odin
#import "fmt.odin";
|
|
|
|
main :: proc() {
|
|
fmt.printf("%f\n", 0.0);
|
|
fmt.printf("%f\n", 1.0);
|
|
fmt.printf("%f\n", -0.5);
|
|
fmt.printf("%+f\n", 1334.67);
|
|
fmt.printf("%f\n", 789.789);
|
|
}
|