mirror of
https://github.com/engineer-man/piston.git
synced 2025-07-06 05:58:45 +02:00
6 lines
127 B
Bash
6 lines
127 B
Bash
#!/usr/bin/env bash
|
|
|
|
rename 's/$/\.kt/' "$@" # Add .kt extension
|
|
|
|
# Compile Kotlin code to a jar file
|
|
kotlinc *.kt -d code.jar
|