No description
Find a file
2026-03-31 15:59:47 +03:00
apps/interpreter New IR -> Aarch64 compiler wip: basic operations done (no pointers, structs, arrays) 2026-03-25 00:22:50 +03:00
examples Implement array-types function arguments & return values in Aarch64 compiler 2026-03-29 22:52:48 +03:00
libs Fix evaluating array address in IR compiler 2026-03-31 15:59:47 +03:00
CMakeLists.txt First common arch-independent IR prototype (no structs or arrays yet) 2026-03-18 18:35:47 +03:00
plans.txt Add left/right shift operators 2026-03-30 12:04:34 +03:00
readme.md Add readme and tweak spec 2026-03-22 13:00:41 +03:00
spec.txt Add readme and tweak spec 2026-03-22 13:00:41 +03:00

This is the repository of an experimental toy programming language.

It is a statically & strictly-typed, imperative, eager-evaluated, low-level language, that should be efficient, simple but effective to use, and allow seamless C FFI.

What is currently done:

  • Part of the base specification (see spec.txt)
  • Bison-generated parser into AST
  • Custom non-SSA IR
  • Part of the AST -> IR compiler
  • Aarch64 JIT compiler (independent from IR for now)
  • Tree-walking interpreter (partially broken)

The project is currently in early stages and in active development. Inspecting its code might prove counter-productive; forking it is absolutely unnecessary.