Go to file
gingerBill 3e9b7120be Merge pull request #1216 from Tetralux/fix-io-read
Fix typo in io.read_at_least()
2021-10-11 13:57:30 +01:00
2021-09-07 20:24:02 +02:00
2021-09-11 17:06:29 +01:00
2021-08-08 11:29:56 +02:00
2021-10-02 14:06:11 +01:00
2018-12-27 10:51:15 +00:00
2021-10-09 19:11:26 +01:00
2021-10-06 22:43:33 +02:00
2020-01-29 12:04:54 +00:00
2021-03-06 20:01:11 -03:00
2021-09-17 12:57:52 +01:00
2020-12-09 18:51:37 -03:00
2021-08-15 12:12:48 +01:00
2021-09-11 17:06:29 +01:00
2021-08-28 22:40:38 +02:00
2020-11-03 07:40:17 -03:00
2021-10-02 13:26:33 +03:00

Odin logo
The Data-Oriented Language for Sane Software Development.


The Odin Programming Language

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)
}

Documentation

Getting Started

Instructions for downloading and installing the Odin compiler and libraries.

Learning Odin

Overview of Odin

An overview of the Odin programming language.

Frequently Asked Questions (FAQ)

Answers to common questions about Odin.

The Odin Wiki

A wiki maintained by the Odin community.

Odin Discord

Get live support and talk with other odiners on the Odin Discord.

References

Language Specification

The official Odin Language specification.

Articles

The Odin Blog

The official blog of the Odin programming language, featuring announcements, news, and in-depth articles by the Odin team and guests.

Warnings

  • The Odin compiler is still in development.
Languages
Odin 76.7%
C++ 14.9%
C 7.8%
Python 0.3%
JavaScript 0.2%