-module(ghatest). -export([sum/2]). %% This is an example function %% With an example comment %% %% And yet another comment sum(A, B) -> A + B.