This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 85c73bf83c074e992f2e1df599b8bed5c9bb04ae
tree 87a113c5e33f6c950b34c8edc303c70149828347
parent 6de24ce98bcceb6b6623e5bc1bf9bd97c9d4efea
tree 87a113c5e33f6c950b34c8edc303c70149828347
parent 6de24ce98bcceb6b6623e5bc1bf9bd97c9d4efea
lfe /
| name | age | message | |
|---|---|---|---|
| |
COPYRIGHT | Mon Aug 25 12:39:39 -0700 2008 | |
| |
Makefile | Fri Aug 22 18:39:19 -0700 2008 | |
| |
README | ||
| |
doc/ | ||
| |
ebin/ | ||
| |
examples/ | ||
| |
src/ | ||
| |
test/ |
README
LFE, Lisp Flavoured Erlang, is a lisp syntax front-end to the Erlang compiler. Code produced with it is compatible with "normal" Erlang code. An LFE evaluator and shell is also included. NOTE NOTE NOTE -------------- A quick fix has been added to compensate for some incompatibilites in Core erlang between the old R12B and the new R13B. The fixes are found in the file lfe_codegen.erl. For one fix code must be chosen depending on whether the systems runs on R12B or R13B, this is the (tiny) function c_fname/3 near the end of the file. Choose the right version of the function. The .beam file in ebin is for R13B. I will try to make a better fix soon. Sorry about that. v0.4 ---- Parameterized modules. Added (export all) attribute to module definition. New records which allow giving default values as in vanilla Erlang. Records are still compatible with vanilla Erlang but now more pratical to use. NOTE this change is not backwards compatible as syntax for (make- ...) and (match- ...) have changed. Also added general multiple (set- ...) macro. (eval-when-compile ...) added as a top-level form which allows functions to be defined when compiling the forms. These are useful for more complex macros. Better and more documention. The documentation is still normal text files as Edoc and I are not in agreement on how things should work. v0.3 ---- This is the first version with the modified internal core forms and macro intefaces for the new CL inspired style and the older Scheme inspired style. Two new modules have been added: lfe_boot allows you start Erlang with the LFE shell running and still have ^G enabled and user_drv running. Use it as follows: erl -noshell -noinput -s lfe_boot start NOTE order of commands important, must be -noshell -noinput! Add -pa to find modules if necessary. lfe_gen is a trial interface for using LFE for dynamic code generation. LFE is much easier to generate as an Erkang list than Erlang forms. This module helps defining and compiling a module. Note, that while it works, this module is very experimental and may change.








