c2compiler
the c2 programming language (by c2lang)
jstar
A lightweight embeddable scripting language (by bamless)
c2compiler | jstar | |
---|---|---|
1 | 4 | |
754 | 119 | |
1.6% | 0.8% | |
9.4 | 8.4 | |
9 days ago | 6 days ago | |
C | C | |
Apache License 2.0 | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
c2compiler
Posts with mentions or reviews of c2compiler.
We have used some of these posts to build our list of alternatives
and similar projects.
-
Interview with C3 language creator, Christoffer Lerno [video]
I discovered C3 from Lerno himself when he was participating in C2's development [1], 6 years ago already; Goodness gracious, time literally flies!
https://github.com/c2lang/c2compiler
jstar
Posts with mentions or reviews of jstar.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-12-04.
-
-❄️- 2023 Day 1 Solutions -❄️-
[LAUNGUAGE: J*]
-
What is your favorite programming language?
My language, obviously.
- Bamless/jstar: A lightweight embeddable scripting language
-
Implementing a Call Stack
Also, since you are willing to look at non-treewalk interpreters, you can take a look at this: https://github.com/bamless/jstar/blob/master/src/vm.h In this I use two parallel arrays, one for frames and one for variables. The frame contains the instruction pointer of the function and the address of the start of the activation record. Variables are stored packed inside the stack array and are accessed through indexing.
What are some alternatives?
When comparing c2compiler and jstar you can also consider the following projects:
ocean - Programming language that compiles into a x86 ELF executable.
umka-lang - Umka: a statically typed embeddable scripting language
holyc-lang - HolyC compiler & transpiler
interpreter - A simple intepreter written in java.
MemeAssembly - A Meme-based programming language
small-vm - A small virtual machine, following the "Write your own virtual machine" : https://justinmeiners.github.io/lc3-vm/ course.