该方法将进程字典作为列表返回。
get()
None
-module(helloworld). -export([start/0]). start() -> put(1,"One"), put(2,"Two"), io:fwrite("~p~n",[get()]).
当我们运行上述程序时,我们将得到以下结果。
[{2,"Two"},{1,"One"}]