basilisp
basilisp copied to clipboard
A Clojure-compatible(-ish) Lisp dialect targeting Python 3.8+
Because Hy just tells coders to write Hy bootstrap code in `__init__.py`, I think the way to hide bootstrapping from users is to embed the bootstrapping code in a project...
Thanks for Basilisp, it's improving my ability to debug Python code. My team does all Python work with `uv`, and in my own editor (through CIDER), I invoke `basilisp` with...
Issue: https://github.com/basilisp-lang/basilisp/issues/1275 Dismiss global `PRINT_SEPARATOR` (empty/whitespace by default?) as hash map is a special case and benefits generally of the separator between pairs for readability. Demo: ``` make repl basilisp.user=>...
Currently (Basilisp 0.4.0) hash maps are printed without kv-pairs separated in any way, making it hard to know which is a key and which is a value: ``` basilisp.user=> {:1...
Hi, I've noticed a change in how exceptions are printed in Basilisp 0.4.0 compared to 0.3.8: the exception type is no longer included when converting an exception to a string....
In #1258 I added support for `basilisp.pprint/simple-dispatch`, but not `code-dispatch` nor for `:fill` style newlines. This ticket represents a follow-up to include that functionality.
It would be great if cider-interrupt would work. I tend to all the time run code that takes longer than I want. An alternative quick hack would be to have...