You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,7 @@ To sort and filter the list interactively, visit the [webpage](https://dbohdan.g
60
60
| Groovy |[Groovy](http://groovy-lang.org/)| Java | JVM's GC | Apache-2.0 | A scripting language for the JVM. A large subset of Java is valid Groovy. [Integrating Groovy into applications](http://groovy-lang.org/integrating.html). |
61
61
| Haxe |[HashLink](https://hashlink.haxe.org/)| C | Tracing (lazy sweep) | MIT | A bytecode interpreter and a baseline JIT compiler (x86/x86\_64 only) for [Haxe](https://haxe.org/). |
62
62
| Haxe, others |[Neko](http://nekovm.org/)| C | Boehm | MIT | The NekoVM is a target for several compilers, including [Haxe](http://haxe.org/). |
63
+
| Interpreter |[Interpreter](https://github.com/Tyill/interpreter)| C++ | None | MIT | A small interpreter in one header and one source code file with optional extensions (arithmetic operations, containers, filesystem, and others). |
63
64
| Io |[Io](https://github.com/stevedekorte/io)| C | Tracing | BSD-3-Clause | A prototype-based OO language. |
64
65
| Janet |[Janet](https://janet-lang.org/)| C | Tracing | MIT | A functional and imperative language with a Lisp syntax. |
65
66
| Java |[BeanShell](https://github.com/beanshell/beanshell/)| Java | JVM's GC | Apache-2.0 | An small, embeddable Java source code interpreter. Understands Java code with certain extensions like method closures. |
Copy file name to clipboardExpand all lines: data/projects.toml
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -400,6 +400,14 @@ gc = "Tracing (lazy sweep)"
400
400
license = "MIT"
401
401
notes = "A bytecode interpreter and a baseline JIT compiler (x86/x86\\_64 only) for [Haxe](https://haxe.org/)."
402
402
403
+
[Interpreter]
404
+
url = "https://github.com/Tyill/interpreter"
405
+
lang = "Interpreter"
406
+
impl_in = "C++"
407
+
gc = "None"
408
+
license = "MIT"
409
+
notes = "A small interpreter in one header and one source code file with optional extensions (arithmetic operations, containers, filesystem, and others)."
410
+
403
411
[Io]
404
412
url = "https://github.com/stevedekorte/io"
405
413
lang = "Io"
@@ -408,14 +416,6 @@ gc = "Tracing"
408
416
license = "BSD-3-Clause"
409
417
notes = "A prototype-based OO language."
410
418
411
-
[Interpreter]
412
-
url = "https://github.com/Tyill/interpreter"
413
-
lang = "Interpreter"
414
-
impl_in = "C++"
415
-
gc = "None"
416
-
license = "MIT"
417
-
notes = "Simple tiny interpreter, extensible by the base library (arithmetic operations, containers, filesystem.. etc). Only one header and source file."
0 commit comments