I did not think I would spent an hour trying to figure this one out... with all the headway I made today and such.
So I'm using what would seem to be - straight out the manual - erlang BIF
calender:universal_time().
But I get
35> calender:universal_time().
** exception error: undefined function calender:universal_time/0
Checked my version of erlang as well.. all up to date..
33> client:cmdParse("A", [<<"24">>, <<"hellloooo">>], 56).
** exception error: undefined function calender:universal_time/0
in function client:timeUTC/0
in call from client:cmdParse/3
34> erlang:system_info(otp_release).
"R14A"
35> calender:universal_time().
** exception error: undefined function calender:universal_time/0
36> calender:universal_time()).
* 1: syntax error before: ')'
36> calender:local_time().
** exception error: undefined function calender:local_time/0
What is going on? Why is it undefined?