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 :: …
Operators are the punctuation of a programming language – the symbols that combine values to compute new ones. Odin’s operator set will feel immediately familiar to C, Go, and Pascal …
Read more →Showing 1–3 of 3 posts (page 1 of 1)