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

start() ->
   Tan = tan(45), 
   io:fwrite("~p~n",[Tan]).