Odin Programming Language


Odin is a Data-Oriented Language for Sane Software Development.

It comes with things like Raylib and other game libraries built-in.

It's a general-purpose language with distinct typing built for high performance, modern systems and data-oriented programming.

I like to say it's a safer C.

An example:

package main

import "core:fmt"

main::proc() {
	fmt.printf("Hi I am writen in Odin!")
}