這用于創(chuàng)建新進程并對其進行初始化。
spawn(Function)
Function ?需要產(chǎn)生的功能。
此方法返回一個進程ID。
-module(helloworld). -export([start/0]). start() -> spawn(fun() -> server("Hello") end). server(Message) -> io:fwrite("~p",[Message]).
當我們運行上面的程序時,我們將得到以下結(jié)果。
“Hello”