jmurmel VS interpreter

Compare jmurmel vs interpreter and see what are their differences.

jmurmel

A standalone or embeddable JVM based interpreter/ compiler for Murmel, a single-namespace Lisp dialect inspired by Common Lisp (by mayerrobert)

interpreter

A simple intepreter written in java. (by bamless)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
jmurmel interpreter
9 2
20 26
- -
9.8 0.0
3 days ago about 3 years ago
Java Java
MIT License 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.

jmurmel

Posts with mentions or reviews of jmurmel. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-01.

interpreter

Posts with mentions or reviews of interpreter. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-04-30.
  • Implementing a Call Stack
    2 projects | /r/ProgrammingLanguages | 30 Apr 2021
    Here you go: https://github.com/bamless/interpreter. Look at the interpret/memenv package. The implementation really couldn't be more simple: it is just a queue of frame objects. pushStackFrame is called when calling a function, and popStackFrame when hitting a return or a function end. The MemoryEnvironment is instantiated by the interpreter visitor so all parts of it have access to the memory. The variables themselves are kept in an hashmap inside each Frame. Not the most efficient way but fast enough for a tree walking interpreter
  • Is there a FULL guide about creating a statically typed bytecode interpreter in C/C++?
    3 projects | /r/ProgrammingLanguages | 22 Jan 2021
    https://github.com/bamless/interpreter/tree/master.

What are some alternatives?

When comparing jmurmel and interpreter you can also consider the following projects:

aviatorscript - A high performance scripting language hosted on the JVM.

jstar - A lightweight embeddable scripting language

OpenJ9 - Eclipse OpenJ9: A Java Virtual Machine for OpenJDK that's optimized for small footprint, fast start-up, and high throughput. Builds on Eclipse OMR (https://github.com/eclipse/omr) and combines with the Extensions for OpenJDK for OpenJ9 repo.

sof-language - The Stack with Objects and Functions Programming Language, a pure stack-based reverse-polish-notation functional and object-oriented experimental programming language.

jisp - Small Lisp expression interpreter made in Java

chapel - a Productive Parallel Programming Language

JEvalExpr - Extensible Java Library and Tool to parse, interpret, compile and execute commands written in a language SQL Like.

Nuua - The Nuua Programming Language - A zero dependencies, high level strong typed, interpreted language built on the top of modern C++17.

lang - This project provides a CLI and GUI interface to the Standard Lang implementation of the Lang Programming Language

Crafting Interpreters - Repository for the book "Crafting Interpreters"