Do You Have The Time? - Part 2
defmodule TickTock do
def current_time do
Time.from_erl!(:erlang.time)
|> Time.to_string
end
end
> TickTock.current_time
"19:58:12"Last updated
defmodule TickTock do
def current_time do
Time.from_erl!(:erlang.time)
|> Time.to_string
end
end
> TickTock.current_time
"19:58:12"Last updated