소스 검색

add ocaml

txlyre 1 년 전
부모
커밋
65963203f7
2개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      langs/ocaml/Dockerfile
  2. 7 0
      langs/ocaml/run.sh

+ 1 - 0
langs/ocaml/Dockerfile

@@ -0,0 +1 @@
+RUN apt-get install ocaml -y

+ 7 - 0
langs/ocaml/run.sh

@@ -0,0 +1,7 @@
+#!/usr/bin/bash
+
+IN="$(mktemp --suffix .ocaml)"
+
+cat > "$IN"
+
+ocaml "$IN"