Remove Kotlin for now
This commit is contained in:
parent
5568441526
commit
ff4f85d8a5
4 changed files with 0 additions and 19 deletions
|
@ -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)
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
FROM zenika/kotlin:jdk12-alpine
|
||||
LABEL author="1Computer1"
|
||||
|
||||
COPY run.sh /var/run/
|
|
@ -1,3 +0,0 @@
|
|||
echo "$1" > program.kt
|
||||
kotlinc program.kt -include-runtime -d program.jar
|
||||
java -jar program.jar
|
|
@ -1,11 +0,0 @@
|
|||
const Language = require('../struct/Language');
|
||||
|
||||
class Kotlin extends Language {
|
||||
constructor() {
|
||||
super('kotlin', {
|
||||
aliases: ['kotlin']
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Kotlin;
|
Loading…
Reference in a new issue