Last active
May 20, 2025 23:22
-
-
Save FATESAIKOU/e5e203c18346be5b14d6003567c50afc to your computer and use it in GitHub Desktop.
kotlin basic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# kt | |
## Source file | |
cat hello.kt <<EOF | |
fun main() { | |
println("Hello, Kotlin!") | |
} | |
EOF | |
## Compile | |
kotlinc hello.kt -include-runtime -d hello.jar | |
## Execute | |
java -jar hello.jar | |
# kts(script) | |
## Source file | |
cat hello.kts <<EOF | |
println("Hello from script!") | |
EOF | |
## Execute | |
kotlin hello.kts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment