% Erlang模块定义 - helloworld
-module(helloworld). 
-export([start/0]). 

start() -> 
   io:fwrite("Hello World").