Azin 0.1.0
Azin 0.1.0 is the first public preview release of the language, introducing the compiler, semantic analysis, type inference, C interoperability and native executable generation.
Released July 12, 2026
Installation
Download the latest archive, extract it and add the executable to your PATH.
azc --version
Azin Compiler 0.1.0Highlights
⚡
Compiler
Compile Azin projects into native executables through GCC.
🧠
Semantic Analysis
Variable resolution, type checking and type inference.
🔗
C Interop
Import C headers with importc and call C APIs directly.
Changelog
Added
- Lexer
- Parser
- AST generation
- Semantic analyzer
- Type inference
- Type checking
- Variables
- Functions
- Function calls
if/else- Integer, float, char and string literals
- C header imports (
importc) - Native executable generation through GCC
- Zed editor extension
Known Issues
- Language syntax may still change before 1.0.
- Diagnostics are still being improved.
Hello, Azin!
importc "stdio.h"
fn main: int do
printf("Hello, Azin!\n")
return 0
end