erlog
erlog copied to clipboard
Prolog interpreter in and for Erlang
We've got one for LFE and Luerl -- why not Erlog, too? 😉
I just found a bug that cause erlog repl fail which the following error: ``` | ?- write('Hello World'). *** ERROR: Shell process terminated! (^G to start new job) ***...
Hi, This is a minor change, basically just rebarifying erlog so it can be used as a rebar dependency. Added rebar.config, rebar and erlog.app.src for enabling others to use erlog...
- got rid of passing functions everywhere. Maybe it is little bit faster, but code is hard to maintain. Refactored erlog gen_server, made erlog logic more OTP like: now there...
Add ability to create user defined operations, part of the ISO standard
Provide a way for erlog to send and receive messages
We should support maps as a data structure. SWI Prolog has a syntax for something similar (Dicts) http://www.swi-prolog.org/pldoc/man?section=dicts I think adapting it wholesale might be a good place to start,...