Hello World in Odin
Every programming journey starts with Hello World. Let’s write our first Odin program.
The Code
Create a file named hello.odin:
| |
Every programming journey starts with Hello World. Let’s write our first Odin program.
Create a file named hello.odin:
| |
Odin is statically and strongly typed — every variable has a fixed type determined at compile time. Odin’s declaration syntax reads left-to-right: name : type = value for variables, name :: …
Showing 1–2 of 2 posts (page 1 of 1)