This is an automated archive made by the Lemmit Bot.

The original was posted on /r/programminglanguages by /u/Svizel_pritula on 2024-08-13 20:50:22+00:00.


Hello!

I wanted to share a small programming language I’ve created as my final project in my advanced C# class. It compiles to CLR IR at runtime, allowing it to be JIT compiled, hopefully offsetting the inherent slowness caused by my language design. 🙂

It supports:

  • pure functions, written in an imperative style
  • immutable structs, automatically shallowly copied on modification
  • checked 64-bit signed arithmetic
  • limited support for strings

It notably lacks arrays, as I ran out of time. 🙂 What do you think?