模組

erlang 模組是一個將幾個功能組合在一起的檔案。此檔案通常具有 .erl 副檔名。

名為 hello.erlHello World 模組如下所示

-module(hello).
-export([hello_world/0]).

hello_world() ->
  io:format("Hello, World!~n", []).

在該檔案中,需要宣告模組名稱。如第 1 行中所示 ..erl 擴充套件前的模組名稱和檔名必須相同。