-module(helloworld). 
-export([start/0]). 

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