모듈 Mod에 있는 인수 Arity개를 가진 RemoteFunc라는 외부 함수를 참조
square(X) -> X * X.
double(L) -> lists:map(fun square/1, L).
A – B는 A에서 B요소들을 뺀다
[1, 2, 3] ++ [4, 5, 6]. 결과 > [1,2,3,4,5,6]
[a, b, c, 1, d, e, 1, x, 1] -- [1]. 결과 > [a,b,c,d,e,1,x,1]
[a, b, c, 1, d, e, 1, x, 1] -- [1, 1]. 결과 > [a,b,c,d,e,x,1]
매크로는 다음과 같은 형태로 작성한다
-define(Constant, Replacement).
-define(Func(Var1, Var2, ...., VarN), Replacement).