모듈로부터 함수가 import되면 그 함수는 모듈 이름을 지정하지 않고도 호출할 수 있다
-module(abc).
-import(lists, [map/2]).
f(L) ->
L1 = map(fun(X) -> 2*X end, L),
lists:sum(L1) <br>
SomeTag는 atom 이여야 한다
-module(attrs).
-vsn(1234).
-author({joe, armstrong}).
-purpose("example of attributes").