acm
acm

Reputation: 12727

Parallel interpreted language for a command line tool?

I'm considering developing a command line tool. I'd like the implementation language for this tool to meet the following criteria:

Along with the above hard requirements, the following are important nice-to-haves:

I realize that is a lot to ask, and there probably isn't one language that gets me all of that. What gets me closest?

Upvotes: 2

Views: 109

Answers (1)

SergGr
SergGr

Reputation: 23788

I think this question will soon be closed as a mostly opinion-based question, but still here is my attempt:

Groovy

It is a fully-fledged JVM-based language which already ticks most of the marks in your requirements list and there are groovysh tool and GroovyShell class that kind of add interpreter-like behavior.

Upvotes: 1

Related Questions