Erlang. Usage: $ erl 1> c(arch). {ok,arch} 2> arch:arch_is_the_best(). Arch is the best! ok
-module(arch). -export([arch_is_the_best/0]). arch_is_the_best() -> io:fwrite("Arch is the best!\n").
~ wuischke, 2008-05-14 14:41:14