diff options
author | Vincent Ambo <tazjin@gmail.com> | 2016-09-22T13·37+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2016-09-22T13·37+0200 |
commit | fac2474ac66cd9a561844b1a6a8f9a91aa45e160 (patch) | |
tree | 76d8312e6e3e4945ab5f58b8ecb398ce4ebd071d /src/hello2.erl | |
parent | 6c456a06c7166b70a2347283a7afcfc4107cb3c7 (diff) |
Add the rest of the damn presentation
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} |