Add Erlang (#2)

This commit is contained in:
1Computer1 2019-10-01 09:35:35 -04:00 committed by GitHub
commit 468eff1cfa
Signed by untrusted user: GitHub
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,4 @@
FROM erlang:alpine
LABEL author="1Computer1"
COPY run.sh /var/run/

3
languages/erlang/run.sh Normal file
View File

@ -0,0 +1,3 @@
echo "%% -*- erlang -*-" > program.erl
printf %s "$1" >> program.erl
escript program.erl || true