diff --git a/README.md b/README.md index 1a238952..c724cf5c 100644 --- a/README.md +++ b/README.md @@ -193,7 +193,8 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Emojicode](e/emojicode.emojic) * [Emoticon](e/emoticon.emoticon) * [Eoool](e/EOOOL.eoool) -* [Erlang](e/erlang.erl) +* [Erlang Escript](e/erlang_escript.erl) +* [Erlang Hw](e/erlang_hw.erl) * [Factor](f/factor.factor) * [Falcon](f/falcon.fal) * [False](f/false.f) diff --git a/e/erlang_escript.erl b/e/erlang_escript.erl new file mode 100644 index 00000000..d466c191 --- /dev/null +++ b/e/erlang_escript.erl @@ -0,0 +1,4 @@ +#!/usr/bin/env escript + +main(_) -> + io:format("Hello World~n").