Live data from Hacker News

Pixie: A small fast, native lisp

github.com

1–10 of 58 posts

Re: Pixie: A small fast, native lisp

#8
post #2

What's magical about it?

Well judging from the description, "native" actually means writing it in RPython (a "restricted" Python with types for use in the PyPy Project for static analysis and speeding things up[0]) and then compiling it down using PyPy (I am guessing on the second part). That could be neat, the HyLang people (Lisp written in vanilla CPython Python; I think no C extensions AFAIK).

[0] http://pypy.readthedocs.org/en/latest/coding-guide.html#id1

Re: Pixie: A small fast, native lisp

#9
This is a lisp engine written in python - RPython, to be precise.

It literally compiles the lisp code into python bytecode, which is pretty neat - sort of like clojure is for the JVM.

https://github.com/pixie-lang/pixie/blob/master/pixie/vm/com...

Perhaps not magical, but I like the effort (though lisp-as-shell has to contend with emacs first).

Post reply on HN