Kotlin
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) |
Dan Tobias (Talk | contribs) |
||
Line 4: | Line 4: | ||
|extensions={{ext|kt}} | |extensions={{ext|kt}} | ||
}} | }} | ||
− | '''Kotlin''' is a statically typed, object-oriented programming language for the [[Java bytecode|JVM]] and the browser. It resembles Apple's [[Swift]] language, but preceded it. It can be used to create [[Android]] apps similarly to the use of Swift to create [[iOS]] apps. It was developed by Russians. | + | '''Kotlin''' is a statically typed, object-oriented programming language for the [[Java bytecode|JVM]] and the browser. (There are also versions based on [[JavaScript]].) It resembles Apple's [[Swift]] language, but preceded it. It can be used for client or server side development, as well as to create [[Android]] apps similarly to the use of Swift to create [[iOS]] apps. It was developed by Russians. |
Variables and structures in Kotlin come in mutable and immutable varieties, indicating whether their values can be changed after being set for the first time. | Variables and structures in Kotlin come in mutable and immutable varieties, indicating whether their values can be changed after being set for the first time. |
Revision as of 20:20, 21 June 2022
Kotlin is a statically typed, object-oriented programming language for the JVM and the browser. (There are also versions based on JavaScript.) It resembles Apple's Swift language, but preceded it. It can be used for client or server side development, as well as to create Android apps similarly to the use of Swift to create iOS apps. It was developed by Russians.
Variables and structures in Kotlin come in mutable and immutable varieties, indicating whether their values can be changed after being set for the first time.
The Kotlin keyword for defining a function is 'fun', so programming in Kotlin is clearly more fun than with any other language.