Giter Site home page Giter Site logo

kururen / odin Goto Github PK

View Code? Open in Web Editor NEW

This project forked from odin-lang/odin

0.0 0.0 0.0 208.7 MB

Odin Programming Language

Home Page: https://odin-lang.org

License: BSD 3-Clause "New" or "Revised" License

Batchfile 0.06% C 26.69% C++ 29.01% Shell 0.01% Makefile 0.03% Odin 43.68% Python 0.52% Nix 0.01% Assembly 0.01%

odin's Introduction

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

Instructions for downloading and installing the Odin compiler and libraries.

Learning Odin

An overview of the Odin programming language.

Answers to common questions about Odin.

A wiki maintained by the Odin community.

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

References

The official Odin Language specification.

Articles

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.

odin's People

Contributors

gingerbill avatar kelimion avatar thisdevdane avatar danielgavin avatar lachsinc avatar tetralux avatar vassvik avatar thebirk avatar platin21 avatar dotbmp avatar yawning avatar kevinw avatar graphitemaster avatar jockus avatar joshuamanton avatar atkurtul avatar hazeycode avatar skytrias avatar moxyfoxy avatar hasenj avatar oskarnp avatar rasa-silva avatar castano avatar terickson001 avatar bttelle avatar lunaticlipid avatar srmordred avatar awwdev avatar nakst avatar thephtest avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.