LFE stands for Lisp Flavoured Erlang, a lisp syntax front-end to the Erlang compiler.
1
vote
2answers
131 views
Compiling LFE files with make
Is there a standard way of compiling .lfe source files from a make rule in an OTP project?
According to the docs, I'm supposed to use lfe_comp:file/1, which doesn't help much if I want to compile ...
0
votes
2answers
322 views
Coercing felm R-object into lm form or some other way of getting it printed in a LaTeX table
I am using the lfe package in R to do some regression with lots of fixed effects, so direct lm is out of the question (and since the fixed effects are not individual-level, so is plm). I get the ...
1
vote
1answer
251 views
Lisp Flavored Erlang on Windows
Does Lisp Flavored Erlang (LFE) work on Windows? I am using LFE 0.6/Erlang 5.8.2/Windows 7 32-bit. I copied the lfe shell script as a batch file (replacing $@ with %1 %2 %3 %4) and it gives me this:
...
5
votes
1answer
339 views
How do I install LFE on Ubuntu Karmic?
Erlang was already installed:
$dpkg -l|grep erlang
ii erlang 1:13.b.3-dfsg-2ubuntu2 Concurrent, real-time, distributed function
ii erlang-appmon ...
9
votes
2answers
650 views
Lisp Flavored Erlang - Messaging primitives
I've read through all the documentation, and most of the source of LFE. All the presentations emphasize basic lisp in traditional lisp roles - General Problem Solving, Hello world and syntax ...