All Projects → azula-lang → azula

azula-lang / azula

Licence: MIT license
A fast, statically typed compiled language

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to azula

TON-Compiler
Clang compiler for Free TON Virtual Machine
Stars: ✭ 56 (+124%)
Mutual labels:  llvm
vuo
A realtime visual programming language for interactive media.
Stars: ✭ 103 (+312%)
Mutual labels:  llvm
tinylang
Tiny玩具语言(Go语言实现/包含Tiny编译器/CASL汇编器/COMET虚拟机/调试器/支持WebAssembly/LLVM)
Stars: ✭ 61 (+144%)
Mutual labels:  llvm
linux
Linux kernel source tree
Stars: ✭ 234 (+836%)
Mutual labels:  llvm
qbicc
Experimental static compiler for Java programs.
Stars: ✭ 118 (+372%)
Mutual labels:  llvm
homebrew-llvm
LLVM formulae for the Homebrew package manager
Stars: ✭ 23 (-8%)
Mutual labels:  llvm
suicide
LLVM pass that detects one undefined behavior, and emits code to delete your hard drive
Stars: ✭ 33 (+32%)
Mutual labels:  llvm
CSCD70
CSCD70 Compiler Optimization
Stars: ✭ 147 (+488%)
Mutual labels:  llvm
Dachs
Dachs; A Doggy 🐶 Programming Language
Stars: ✭ 82 (+228%)
Mutual labels:  llvm
mlir-standalone-template
An out-of-tree MLIR dialect template.
Stars: ✭ 44 (+76%)
Mutual labels:  llvm
clangbuilder
Building Clang ♡ Utility and Environment
Stars: ✭ 101 (+304%)
Mutual labels:  llvm
nballerina-cpp
Ballerina compiler backend that generates platform-specific executables.
Stars: ✭ 16 (-36%)
Mutual labels:  llvm
llrl
An experimental Lisp-like programming language
Stars: ✭ 126 (+404%)
Mutual labels:  llvm
neo-c
Yet another modern compiler. It is also C compiler. Using LLVM wih boehmGC
Stars: ✭ 72 (+188%)
Mutual labels:  llvm
ugo
µGo编程语言(从头开发一个迷你Go语言编译器)
Stars: ✭ 38 (+52%)
Mutual labels:  llvm
FastLua
Lua trace JIT compiler using LLVM-C
Stars: ✭ 22 (-12%)
Mutual labels:  llvm
EmbedSanitizer
EmbedSantizer is a runtime race detection tool which extends ThreadSanitizer to detect data races in 32-bit ARM applications.
Stars: ✭ 16 (-36%)
Mutual labels:  llvm
contech
The Contech analysis framework provides the means for generating and analyzing task graphs that enable computer architects and programmers to gain a deeper understanding of parallel programs.
Stars: ✭ 43 (+72%)
Mutual labels:  llvm
deollvm64
deobfuscator llvm arm64 script
Stars: ✭ 67 (+168%)
Mutual labels:  llvm
geode
The Geode Programming Language
Stars: ✭ 16 (-36%)
Mutual labels:  llvm

Azula

chat issues

Azula is a strongly-typed compiled language, using an LLVM backend, with the following goals:

  • Static typing
  • Easy-to-read syntax
  • Efficient execution

Discord

Compiling Your Code

azula build FILENAME

or to run directly:

azula run FILENAME

Progress

Short term goals:

  • Lexing
  • Parsing
  • Typechecking
  • Azula IR codegen
  • LLVM backend
  • Hooking into C standard library functions
  • Arrays
  • Loops
  • Structures
  • Methods
  • Multi-file projects
  • Beginnings of a standard library

Example Code

func fib(x: int): int {
    if x == 0 || x == 1 {
        return x;
    }
    return fib(x - 1) + fib(x - 2);
}

func main {
    printf("%d\n", fib(15));
}

Requirements

  • LLVM 13
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].