6 lines
143 B
Plaintext
6 lines
143 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
rename 's/$/\.kt/' "$@" # Add .kt extension
|
||
|
|
||
|
# Compile Kotlin code to a jar file
|
||
|
kotlinc *.kt -include-runtime -d code.jar
|