Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/brandonki/arcane
- Owner: BrandonKi
- License: mit
- Created: 2020-04-08T16:11:22.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-19T12:41:21.000Z (7 months ago)
- Last Synced: 2024-04-19T13:54:06.176Z (7 months ago)
- Topics: compiler, explodes, programming-language
- Language: C++
- Homepage:
- Size: 5.37 MB
- Stars: 5
- Watchers: 3
- 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