-module(helloworld). 
-import(math,[atan/1]). 
-export([start/0]). 

start() ->
   Atan = atan(0.7071), 
   io:fwrite("~p~n",[Atan]).