An open API service indexing awesome lists of open source software.

https://github.com/zweifisch/ob-lfe

org-babel functions for lfe(list flavored erlang) evaluation
https://github.com/zweifisch/ob-lfe

Last synced: about 2 months ago
JSON representation

org-babel functions for lfe(list flavored erlang) evaluation

Awesome Lists containing this project

README

        

* ob-lfe

org-babel functions for lfe(list flavored erlang) evaluation

** options

| option | example |
|------------+----------------------|
| =:session= | =:session mysession= |

** examples

: #+BEGIN_SRC lfe
: (! (self) #(1 2 3))
: #+END_SRC
:
: #+RESULTS:
: : #(1 2 3)
:
: #+BEGIN_SRC lfe
: (receive ((tuple x y z)
: (io:format "received ~p ~p ~p" (list x y z))))
: #+END_SRC
:
: #+RESULTS:
: : received 1 2 3ok