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

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