Notices tagged with erlang
-
I’ve been doing some very introductory tutorials for #Lua. It seems pretty interesting. I don’t think it will displace #Tcl and #Python as my favorite scripting languages, but it could become the third in the set. Seeing that tables (which are dictionaries—associative arrays—that can also act as regular arrays if numeric keys are used) are the only data structure, it …
-
This looks interesting - #Erlang on #Xen http://erlangonxen.org/
-
!Erlang/OTP R15B02 packages (Linux, Mac and Windows) are ready for download from http://bit.ly/OQYXhF /via @ErlangSolutions
-
!Erlang/OTP R15B02 packages (Linux, Mac and Windows) are ready for download from http://bit.ly/OQYXhFRT /via @ErlangSolutions
-
You *must* love !Erlang !programming -module(permute). -export([perm/1]). perm([]) -> [[]]; perm(L) -> [[H|T] || H<-L, T<-perm(L--[H])].
-
You *must* love !Erlang !programming -module(permute). -export([perm/1]). perm([]) -> [[]]; perm(L) -> [[H|T] || H<-L, T<-perm(L--[H])].
-
Why OO Sucks by Joe Armstrong http://j.mp/h0cJC7 /via @newsycombinator !programming !erlang