Skip to content

v1.0-alpha

Pre-release
Pre-release

Choose a tag to compare

@willerf willerf released this 10 Nov 08:19
· 80 commits to main since this release

Current Features

  • Functions
  • Pointers
  • Branching
  • Loops
  • Recursion
  • Strict Type Checking
  • Char Literals
  • String Literals

Supported Types

  • Integer: i32
  • Boolean: bool
  • Character: char
  • Pointer: *

Supported Operations

  • Boolean: || && !
  • Comparison: == != < > <= >=
  • Arithmetic: + - * / %
  • Address-of and Dereference: & *