开发者

Concatenative language interpreter in Java [closed]

开发者 https://www.devze.com 2023-01-01 00:10 出处:网络
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 4 years ago.

Improve this question

I'm interested in finding a concatenative language interpreter in Java. Ideally, it should satisfy the following conditions:

  • It has an interpreter, not (only) a bytecode compiler for JVM.
  • The language itself has decent documentation, not only a few examples and a "I'll document the rest someday" notice.
  • The project is not completely abandoned.

In short, I'm looking for a reasonably "alive" concatenative language that can be embedded i开发者_如何转开发nto Java easily.


I was looking for something similar today and ran into JKat.


I found JOLIE. It says:

JOLIE is a service-oriented programming language, that you can use to build powerful orchestrators. An orchestrator is a software application that composes other services in order to obtain new functionalities. Writing an orchestrator means to deal with the composition of service communications


7th is developed as a java script engine named "7th". There are examples how to interact between 7th and the calling Java™ program. Write Engine engine = Engine.create(); in Your Java program. Execute Your 7th program by sending it to the engine in the way: engine.eval(˂Your 7th program here˃).

0

精彩评论

暂无评论...
验证码 换一张
取 消