Has anyone tried to use IPython with the Hylang syntax?
Try out my hymagic module. You can install it using
$ pip install hymagic
Load the magic using
%load_ext hymagic
Use %hylang
for one line and %%hylang
for a whole cell. For example
%hylang (+ 1 2 3)
and
%%hylang
(defn hello []
(print "hello world"))
(hello)
One can instead install the hy kernel, where there's no need to prefix
%hylang
at the start of every cell.