Odin
Odin is a systems language aiming to be a pleasant alternative to C, with data-oriented design, no garbage collector and a focus on game development and high-performance software. Pragmatic, simple and with good built-in tooling.
- Creado por Ginger Bill
- Año 2016
- Paradigma: Imperative · compiled
- Extensiones: .odin
Para qué se usa
- Video games
- High-performance software
- Systems programming
A favor
- Simple C alternative
- Data-oriented
- Good tooling
En contra
- Young
- Small community
- Low adoption yet
Ecosistema
- core lib
- vendor
- Raylib
Ejemplo
package main
import "core:fmt"
main :: proc() {
fmt.println("¡Hola, mundo!")
}