6 lines
82 B
Erlang
6 lines
82 B
Erlang
|
-module(hello).
|
||
|
-export([start/0]).
|
||
|
|
||
|
start() ->
|
||
|
io:format("Goodbye, joe.~n").
|