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

start() -> 
   io:fwrite("~p~n",[binary_to_atom(<<"Erlang">>, latin1)]).