Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brianlusina/kotlinground
Code snippets, scripts, hacks, algorithms in Kotlin
https://github.com/brianlusina/kotlinground
hacktoberfest kotlin kotlin-code kotlin-koans
Last synced: 27 days ago
JSON representation
Code snippets, scripts, hacks, algorithms in Kotlin
- Host: GitHub
- URL: https://github.com/brianlusina/kotlinground
- Owner: BrianLusina
- License: mit
- Created: 2017-12-05T13:02:21.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-05-23T07:30:30.000Z (8 months ago)
- Last Synced: 2024-05-23T08:28:04.821Z (8 months ago)
- Topics: hacktoberfest, kotlin, kotlin-code, kotlin-koans
- Language: Kotlin
- Homepage:
- Size: 3.92 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# KotlinGround
[![Tests](https://github.com/BrianLusina/KotlinGround/actions/workflows/tests.yml/badge.svg)](https://github.com/BrianLusina/KotlinGround/actions/workflows/tests.yml)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/132a1eb4abe1424790c4832984f6e73b)](https://www.codacy.com/app/BrianLusina/KotlinGround?utm_source=github.com&utm_medium=referral&utm_content=BrianLusina/KotlinGround&utm_campaign=Badge_Grade)A series of code snippets written in Kotlin. This is used as a learning tool into the [Kotlin](https://kotlinlang.org/)
programming language.## Getting Started
Simply clone the repository and run any code snippet. All the code snippets, or 90% that count have tests backing them.
The structure of the tests directory directly matches the structure of the app directory, which houses all the code
snippets.```sh
$ git clone https://github.com/BrianLusina/KotlinGround.git
$ cd KotlinGround
$ ./gradlew test
```It is preferrable that you run tests and any other task with the Gradle Wrapper, as this will ensure you are using the
correct version of gradle.## Pre-requisites
Kotlin Compiler and gradle are the main pre-requisites you will need when using this repository. Downloading them is
easy using [sdkman](http://sdkman.io/install.html). Follow the instructions to get a copy of sdkman and then install
kotlin and gradle as follows:```sh
$ sdk install kotlin
...
$ sdk install gradle
```Enjoy!