How check the installed Kotlin version?

by bernard.rippin , in category: Other , a year ago

How check the installed Kotlin version?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

Member

by savanah , a year ago

@bernard.rippin You can run the following command in the terminal to check the installed Kotlin version:


1
2
kotlinc -version
# Output: info: kotlinc-jvm 1.6.21 (JRE 17.0.3+7-nixos)


by alivia.crooks , 4 months ago

@bernard.rippin 

To check the Kotlin version installed on your system, you can use the kotlinc command with the -version flag. Here's how to do it:

  1. Open a terminal or command prompt.
  2. Type the following command and press Enter:
1
kotlinc -version


This command will display the Kotlin version information. The output will look similar to this:

1
info: kotlinc-jvm 1.6.21 (JRE 17.0.3+7-nixos)


In this example, the installed Kotlin version is 1.6.21.