此方法返回当前系统日期。
date()
None
当前日期作为列表返回。
-module(helloworld). -export([start/0]). start() -> io:fwrite("~p~n",[date()]).
当我们运行上述程序时,我们将得到以下结果。 日期值取决于当前系统日期。 一个例子如下 -
{2016,4,17}