Erlang


-module(hello).
-export([hello_world/0]).

hello_world()->
    io:format("Hello World ~n"). 
-----------------------------------------------------------------------
And Executing:

hello:hello_world().  


submitted by: dat93nan@lab4-8.idt.mdh.se (Niklas Andersson)