sandbox/pe/hello.erl

6 lines
82 B
Erlang

-module(hello).
-export([start/0]).
start() ->
io:format("Goodbye, joe.~n").