Skip to content

Files

Latest commit

e5b8407 · Mar 1, 2025

History

History

kotlin

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Apr 25, 2021
Mar 1, 2025
Oct 5, 2023
Oct 5, 2023
Oct 9, 2023
Oct 5, 2023
Oct 3, 2023
Oct 6, 2023
Oct 5, 2023
Oct 4, 2023
Oct 5, 2023
Oct 9, 2023
Jul 10, 2024
Jul 16, 2024
Oct 5, 2023
Oct 5, 2023
Oct 5, 2023
Oct 8, 2017
Oct 3, 2023
Oct 5, 2023
Oct 6, 2023
Oct 4, 2023
Sep 1, 2023
Aug 30, 2023
Oct 9, 2023
Oct 5, 2023
Jul 10, 2024
Dec 21, 2024
Jul 10, 2024
Jun 22, 2024
Nov 27, 2024
Oct 10, 2023
Aug 30, 2023
Oct 3, 2023
Aug 30, 2023
Oct 4, 2023
Oct 5, 2023
Oct 10, 2023
Oct 9, 2023

Kotlin Explorations

To build and run Kotlin programs on your local machine, you can use an IDE such as IDEA or Android Studio, which has a Kotlin environment built-in. You can also use your favorite package manager.

Programs in this folder have been tested using Kotlin 2.0.0 and can be run from the command line like so:

kotlinc -script triple.kts
kotlinc -script permutations.kts I like carrots
kotlinc -script top_ten_scorers.kts < ../test/wnba_input

Running the command kotlin with no arguments gives you a repl.

To run the tests, invoke ./test.sh in a Unix-friendly shell or test.ps1 in PowerShell.

About

Kotlin is a statically typed programming language that runs on the Java virtual machine and also can be compiled to JavaScript source code or use the LLVM compiler infrastructure. Kotlin is a general purpose, open source, statically typed “pragmatic” programming language. It is focused on interoperability, safety, clarity, and tooling support. Since 2019, it has been the official preferred language for Android development.

Resources

In Open Source