Sophie

Sophie

distrib > Mageia > 6 > i586 > by-pkgid > 5fc0659a7cb6cb9c4078e6b54c87e163 > files > 15

erlang-mustache-0.1.1-4.mga6.i586.rpm

-module(unescaped).
-compile(export_all).

title() ->
  "Bear > Shark".

%%---------------------------------------------------------------------------

start() ->
  code:add_patha(".."),
  Output = mustache:render(unescaped, "unescaped.mustache"),
  io:format(Output, []).