Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このHaskellスニペットに相当するものをErlangで書くにはどうすればよいですか?
name@(x:xs)
のような構文でそれを行うことができますName=[X|Xs]。使用例は次のとおりです。
Name=[X|Xs]
headlist([H|T]=L) -> io:format("List (~p) with head ~p ~n",[L,H]).