-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!