这用于在节点上创建新的流程链接。
spawn(Node,Function)
Node - 需要生成函数的节点。
Function - 需要生成的功能。
此方法返回进程ID。
-module(helloworld).
-export([start/0]).
start() ->
spawn_link(node(),fun() -> server("Hello") end).
server(Message) ->
io:fwrite("~p",[Message]).
当我们运行上述程序时,我们将得到以下结果。
“Hello”