Lisp Flavoured Erlang 1.0 released after 8 years of development
1–10 of 96 posts
Re: Lisp Flavoured Erlang 1.0 released after 8 years of development
#2I feel that this LFE release further validates BEAM as a promising platform for future development of new programming languages. Also I look forward to reading SICP converted to LFE. Available chapters can be found here https://www.gitbook.com/book/lfe/sicp
Re: Lisp Flavoured Erlang 1.0 released after 8 years of development
#3What are limitations?
Re: Lisp Flavoured Erlang 1.0 released after 8 years of development
#4 [1] http://extempore.moso.com.au/Re: Lisp Flavoured Erlang 1.0 released after 8 years of development
#5Robert Virding has just announced the release on twitter https://twitter.com/rvirding/status/710259707819249664 I feel that this LFE release further validates BEAM as a promising platform for future development of new programming languages. Also I look forward to reading SICP converted to LFE. Available chapters can be found here https://www.gitbook.com/book/lfe/sicp
Re: Lisp Flavoured Erlang 1.0 released after 8 years of development
#6> A proper Lisp-2, based on the features and limitations of the Erlang VM What are limitations?
Re: Lisp Flavoured Erlang 1.0 released after 8 years of development
#7Re: Lisp Flavoured Erlang 1.0 released after 8 years of development
#8> A proper Lisp-2, based on the features and limitations of the Erlang VM What are limitations?
One obvious example is that AFAIK the VM doesn't support functions with a variable number of arguments (foo/1 and foo/2 are two separate functions). This means that you can't have CL-style &rest or &key arguments.
If you're on a VM or other target that doesn't do them natively, it's worth fighting tooth and nail to somehow get the functionality.
E.g. make an inefficient variadic type that at the VM level takes a single argument---a list or vector of the arguments. Or multiple types for different combinations of fixed arg arity plus variable list.
Re: Lisp Flavoured Erlang 1.0 released after 8 years of development
#9Im going to buy some spare paren keys, they might become scarce in the immediate future.
Re: Lisp Flavoured Erlang 1.0 released after 8 years of development
#10Could you believe that 2016 is the year of the beginning of the LISP renaissance. Im going to buy some spare paren keys, they might become scarce in the immediate future.