-module(helloworld). 
-import(lists,[reverse/1]). 
-export([start/0]). 

start() -> 
   Lst1 = [1,2,3], 
   io:fwrite("~p~n",[reverse(Lst1)]).