The Wayback Machine - https://web.archive.org/web/20220207140142/https://github.com/topics/interpreter
Skip to content
#

interpreter

Here are 4,159 public repositories matching this topic...

Red is a next-generation programming language strongly inspired by Rebol, but with a broader field of usage thanks to its native-code compiler, from system programming to high-level scripting and cross-platform reactive GUI, while providing modern support for concurrency, all in a zero-install, zero-config, single 1MB file!
  • Updated Feb 6, 2022
  • Red
mvdan
mvdan commented Dec 30, 2021

Our interpreter test suite is checked against the real bash (as well as other shells, like mksh and dash). However, since those shells had bugs in older versions, the tests are skipped if the version is too old (or too new, as sometimes changes in behavior happen!).

This results in test failures being merged to master, as CI doesn't run those tests. For example, see https://github.com/mvdan/sh/

Thihup
Thihup commented Aug 19, 2021

Current, if we try to run a more recent Java class in an old JVM, we get the following error message:

Error: LinkageError occurred while loading main class some.Class
	java.lang.UnsupportedClassVersionError: JVMCFRE003 bad major version; class=some/Class, offset=6

However, it is not so easily to detect that the class was compiled with a version above the supported by the JVM.Hotspot

boa
root
sbmorphe
sbmorphe commented Dec 16, 2021

When trying to define an operator in the cling cli repl, the "function definition is not allowed here" error is generated. "cling -version" reports "0.8". Here's a copy/paste of a session to demonstrate the issue:

****************** CLING ******************
* Type C++ code and press enter to run it *
*             Type .q to exit             *
*****************************************
pocketlang
ThakeeNathees
ThakeeNathees commented Jun 30, 2021

Currently, our math module isn't completely filled with necessary math functions, where you can contribute us by adding more math functions. This issue has reference on how to add log function to the math module.

How to implement

PR #154 has example on how to add log10 to the math module, which you can use as a reference to add log (base 2) function.

Finally

And don't forget

Improve this page

Add a description, image, and links to the interpreter topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the interpreter topic, visit your repo's landing page and select "manage topics."

Learn more