diff options
Diffstat (limited to 'src/hello2.erl')
-rw-r--r-- | src/hello2.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hello2.erl b/src/hello2.erl index 42406919eff8..2d1f6c84c401 100644 --- a/src/hello2.erl +++ b/src/hello2.erl @@ -2,7 +2,7 @@ -export([hello/1]). hello(Name) -> - io:format("Hello ~s!~n", [Name]). + io:format("Hey ~s!~n", [Name]). % 3> c(hello2). % {ok,hello2} |