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

https://github.com/paulcacheux/elang

Compiler for a simple C-like rust-inspired language.
https://github.com/paulcacheux/elang

compilers programming-language rust

Last synced: 4 months ago
JSON representation

Compiler for a simple C-like rust-inspired language.

Awesome Lists containing this project

README

          

Elang
=====

Elang is a simple language based on C functionalities but with a Rust-like syntax.
The ouput is heavily based on LLVM (4.0).

```
USAGE:
elang_driver [FLAGS] [OPTIONS]

FLAGS:
--ast Dump AST
-h, --help Prints help information
--ir Dump IR
-O Activate optimizations
-V, --version Prints version information

OPTIONS:
-o, --output Output file
-t, --type Output type [values: check, llvm, run, exec]

ARGS:
Input file
```