Forrest logo
back to context overview

kotlinc

List of commands for kotlinc:

  • kotlinc:tldr:01b8f kotlinc: Start a REPL (interactive shell).
    $ kotlinc
    try on your machine
    explain this command
  • kotlinc:tldr:09d7b kotlinc: Compile a Kotlin file.
    $ kotlinc ${filename-kt}
    try on your machine
    explain this command
  • kotlinc:tldr:703e0 kotlinc: Execute a specific Kotlin Script file.
    $ kotlinc -script ${filename-kts}
    try on your machine
    explain this command
  • kotlinc:tldr:d4290 kotlinc: Compile a Kotlin file into a self contained jar file with the Kotlin runtime library included.
    $ kotlinc ${filename-kt} -include-runtime -d ${filename-jar}
    try on your machine
    explain this command
back to context overview