-module(modulename)
-module(helloworld). -export([start/0]). start() -> io:fwrite("Hello World").
Hello World
-Tag(Value)
-module(helloworld). -author("TutorialPoint"). -version("1.0"). -export([start/0]). start() -> io:fwrite("Hello World").
Hello World
export([FunctionName1/FunctionArity1,.,FunctionNameN/FunctionArityN])
在這裡,
FunctionName ? 這是程式中的函式名稱;
FunctionArity ? 這是與函式相關聯的引數數目;
-module(helloworld). -author("TutorialPoint"). -version("1.0"). -export([start/0]). start() -> io:fwrite("Hello World").
上面的程式碼的輸出結果是 -
Hello World
-import (modulename , [functionname/parameter]).
在這裡,
Modulename ? 這是需要匯入的模組的名稱
functionname/parameter ? 這是在模組中需要匯入的函式
-module(helloworld). -import(io,[fwrite/1]). -export([start/0]). start() -> fwrite("Hello, world!\n").
Hello, world!