by avindroth on 10/26/23, 3:27 AM with 3 comments
CLI or embedded in editor, I don’t mind either.
by denvaar on 10/26/23, 4:17 AM
- Tab completion (obviously). Not only for functions/modules/bindings that are in scope, but also when you're in a string and begin typing a path, it will complete the directory names and stuff.
- You can type "h" before a module or function name to read the docs. Similarly, you can do the same with "t" to see type information.
- History of what you've executed, and also a reverse history search feature.
- Not fully "readline compatible", but some basic, standard key bindings work.
- Plenty of handy helper functions.[2]
by uticus on 10/26/23, 2:27 PM
Of course LISP is the example to look at with REPL: https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93prin...
...esp with Emacs: https://slime.common-lisp.dev/
by stop50 on 10/26/23, 4:55 AM