mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-12 05:18:09 +00:00
12 lines
105 B
Odin
12 lines
105 B
Odin
import "other"
|
|
|
|
TAU :: 6.28;
|
|
PI :: PI/2;
|
|
|
|
main :: proc() {
|
|
x : int = 2;
|
|
x = x * 3;
|
|
|
|
y := add(1, x);
|
|
}
|