|
1 день тому | |
---|---|---|
.github | 2 тижнів тому | |
base | 4 днів тому | |
bin | 3 місяців тому | |
ci | 3 місяців тому | |
core | 1 день тому | |
examples | 1 місяць тому | |
misc | 2 місяців тому | |
shared | 6 роки тому | |
src | 1 день тому | |
tests | 1 день тому | |
vendor | 1 тиждень тому | |
.editorconfig | 1 рік тому | |
.gitattributes | 1 рік тому | |
.gitignore | 2 тижнів тому | |
LICENSE | 1 рік тому | |
LLVM-C.dll | 4 місяців тому | |
Makefile | 11 місяців тому | |
PROPOSAL-PROCESS.md | 4 роки тому | |
README.md | 3 місяців тому | |
build.bat | 2 місяців тому | |
build_odin.sh | 2 місяців тому | |
build_vendor.bat | 2 роки тому | |
check_all.bat | 1 місяць тому | |
check_all.sh | 1 місяць тому | |
codecov.yml | 1 місяць тому | |
shell.nix | 4 місяців тому |
The Data-Oriented Language for Sane Software Development.
Odin is a general-purpose programming language with distinct typing, built for high performance, modern systems, and built-in data-oriented data types. The Odin Programming Language, the C alternative for the joy of programming.
Website: https://odin-lang.org/
package main
import "core:fmt"
main :: proc() {
program := "+ + * 😃 - /"
accumulator := 0
for token in program {
switch token {
case '+': accumulator += 1
case '-': accumulator -= 1
case '*': accumulator *= 2
case '/': accumulator /= 2
case '😃': accumulator *= accumulator
case: // Ignore everything else
}
}
fmt.printf("The program \"%s\" calculates the value %d\n",
program, accumulator)
}
Instructions for downloading and installing the Odin compiler and libraries.
Get the latest nightly builds of Odin.
An overview of the Odin programming language.
Answers to common questions about Odin.
Documentation for all the official packages part of the core and vendor library collections.
Examples on how to write idiomatic Odin code. Shows how to accomplish specific tasks in Odin, as well as how to use packages from core
and vendor
.
Documentation for the Odin language itself.
Get live support and talk with other Odin programmers on the Odin Discord.
The official blog of the Odin programming language, featuring announcements, news, and in-depth articles by the Odin team and guests.