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
- Host: GitHub
- URL: https://github.com/brandonki/arcane
- Owner: BrandonKi
- License: mit
- Created: 2020-04-08T16:11:22.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-19T12:41:21.000Z (almost 2 years ago)
- Last Synced: 2025-04-04T05:22:56.360Z (10 months ago)
- Topics: compiler, explodes, programming-language
- Language: C++
- Homepage:
- Size: 5.37 MB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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