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

https://github.com/brandonki/arcane

small programming language with custom backend
https://github.com/brandonki/arcane

compiler explodes programming-language

Last synced: 9 months ago
JSON representation

small programming language with custom backend

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