mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
776dc0e8f1
This is the third go and I'm going for it!
12 lines
121 B
Odin
12 lines
121 B
Odin
main :: proc() {
|
|
// x : string;
|
|
// x = "Hello";
|
|
x : int;
|
|
x = 137;
|
|
x = 1 + x;
|
|
|
|
y : f32;
|
|
y = 1.01;
|
|
y = y + 0.99;
|
|
}
|