% % My first program. % By Alan. % -module(hello). -export([start/0]). % % -- Public -- % start() -> io:format("Hello world!~n"), tart(). % % -- Private -- % tart() -> io:format("Tart to Tart~n").