I have been playing around with LFE a lot lately. It's great fun and compiles straight to BEAM code. You can program anything with LFE that you would with Erlang.
http://github.com/rvirding/lfe/tree/master The code looks like this http://github.com/dysinger/catclaw/blob/0269e7f0e925c4d3e727e9577e43c60ef482c564/src/catclaw.lfe <- a simple couchdb hammering function LFE has a Emakefile-style erlang compiler. It looks like this in my makefiles erl -noshell -noinput -eval 'case lfe_comp:file("src/somefile.lfe", [report,{outdir,"ebin"}]) of error -> halt(1); _ -> halt(0) end.' How would I integrate a compiler like this into the sinan build ? -Tim --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "erlware-dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/erlware-dev?hl=en -~----------~----~----~----~------~----~------~--~---
