#erlang
Read more stories on Hashnode
Articles with this tag
In Lisp Flavored Erlang (LFE), macros are powerful tools for metaprogramming, allowing developers to define new language constructs and perform code...
an LFE program is composed of anywhere from 1 to hundreds of thousands of lightweight processes. each process operates independently with its own...
Output on Terminal > (lfe_io:format "hello world~n" ())lfe_io:format function is use to write output on terminal. It can takes one or two arguments as...
Lisp, short for "List Processing," is a family of programming languages known for its distinctive, fully parenthesized prefix notation. Originally...