Merge pull request #467 from SLIB53/add-erlang-escript

Add erlang escript, update README
This commit is contained in:
Mike Donaghy
2018-07-17 00:55:06 -05:00
committed by GitHub
2 changed files with 6 additions and 1 deletions

View File

@@ -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)

4
e/erlang_escript.erl Normal file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env escript
main(_) ->
io:format("Hello World~n").