Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/brandonki/arcane

ARCANE Runs, Compiles And Never Explodes
https://github.com/brandonki/arcane

compiler explodes programming-language

Last synced: 3 days ago
JSON representation

ARCANE Runs, Compiles And Never Explodes

Awesome Lists containing this project

README

        

# ARCANE

A programming language built on a custom backend. (ARCVM)
https://github.com/BrandonKi/ARCVM

(Work In Progress)

# Sample Code

```zig
fn add(a : int, b : int) int {
ret a + b;
}

fn main() int {
i := 0;
x : int = 5;
result := add(i, x);
// supports UFCS
result := i.add(x);
ret result;
}
```
Syntax Highlighting in VSCode: https://github.com/BrandonKi/arcane-syntax-highlighter