No description
Find a file
2026-08-02 15:24:50 +03:00
apps/interpreter Switch to curly braces for scoping instead of indentation 2026-07-27 16:12:56 +03:00
examples Switch to curly braces for scoping instead of indentation 2026-07-27 16:12:56 +03:00
libs x86_64 backend: support returning structs & arrays 2026-08-02 15:24:50 +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 sizeof & alignof builtins 2026-04-03 00:04:12 +03:00
readme.md Tweak readme 2026-04-01 23:45:54 +03:00
spec.txt Switch to curly braces for scoping instead of indentation 2026-07-27 16:12:56 +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.