Vojislav Stojkovic
Vojislav Stojkovic

Reputation: 8153

Concatenative language interpreter in Java

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

In short, I'm looking for a reasonably "alive" concatenative language that can be embedded into Java easily.

Upvotes: 4

Views: 583

Answers (3)

Kaplan
Kaplan

Reputation: 11

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˃).

Upvotes: 1

Binil Thomas
Binil Thomas

Reputation: 13799

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

Upvotes: 2

Parth
Parth

Reputation: 1281

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

Upvotes: 1

Related Questions