Remove Kotlin for now

This commit is contained in:
1computer1 2019-03-15 22:45:52 -04:00
parent 5568441526
commit ff4f85d8a5
4 changed files with 0 additions and 19 deletions

View file

@ -71,7 +71,6 @@ Options are optionally set in `options`, which is a semicolon-delimited list of
- `e` prints the result of evaluating the code
- `julia` Julia (Julia 1.1.0)
- `e` prints the result of evaluating the code
- `kotlin` Kotlin (Kotlin 1.3)
- `lisp` Racket (Racket 7.2)
- `lua` Lua (Lua 5.3)
- `ocaml` OCaml (OCaml 4.0.6)

View file

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

View file

@ -1,3 +0,0 @@
echo "$1" > program.kt
kotlinc program.kt -include-runtime -d program.jar
java -jar program.jar

View file

@ -1,11 +0,0 @@
const Language = require('../struct/Language');
class Kotlin extends Language {
constructor() {
super('kotlin', {
aliases: ['kotlin']
});
}
}
module.exports = Kotlin;