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

start() ->
   Aexp = exp(3.14), 
   io:fwrite("~p~n",[Aexp]).