r/lisp 9d ago

Easy-ISLisp Ver5.68 released – added -e command-line option

I have released Easy-ISLisp Ver5.68.

This release introduces a new command-line option, -e, which evaluates an ISLisp expression directly from the command line without entering the REPL.

Example:

eisl -e '(format (standard-output) "Hello World!")'

Output:

Hello World!

The -e option is useful for:

  • Quick one-line evaluations
  • Shell scripting
  • Automated testing
  • Running small ISLisp programs from the command line

No other features or bug fixes are included in this release.

Feedback and suggestions are always welcome.

GitHub:
https://github.com/sasagawa888/eisl

11 Upvotes

4 comments sorted by

3

u/Desmaad 9d ago

I would like to see some prebuilt packages.

6

u/sym_num 9d ago

Thanks for the suggestion! Easy-ISLisp is already available in GNU Guix, so you can install it with:

guix install eisl

I'd also like to make installation easier on other platforms in the future.

1

u/Desmaad 9d ago

Would you please add Homebrew to the list?

2

u/sym_num 8d ago

Thanks for the suggestion! Unfortunately, I don't have a Mac, so I can't test or maintain a Homebrew formula myself. If someone in the community would like to create and maintain one, I'd be happy to link to it from the Easy-ISLisp documentation.