Erlang – localtime

Erlang localtime

In this guide, we will discuss Erlang localtime. The method is used to give the local date and time in the system.

Syntax

localtime()

Parameters

  • None

Return Value

The method is used to give the local date and time in the system.

For example

-module(helloworld). 
-export([start/0]). 

start() -> 
   io:fwrite("~p~n",[erlang:localtime()]).

Output

When we run the above program we will get the following result.

{{2016,4,17},{11,33,9}}

Next Topic : Click Here

This Post Has 2 Comments

Leave a Reply