Initial commit

This commit is contained in:
1computer1 2019-07-09 05:19:41 -04:00
commit 93a4378475
62 changed files with 864 additions and 0 deletions

7
languages/c/Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM alpine
LABEL author="1Computer1"
RUN apk update
RUN apk add gcc libc-dev
COPY run.sh /var/run/

2
languages/c/run.sh Normal file
View file

@ -0,0 +1,2 @@
printf %s "$1" > program.c
gcc program.c -o program && ./program || true