An open API service indexing awesome lists of open source software.

https://github.com/simonberner/kotlin-firststeps

First baby steps with Kotlin
https://github.com/simonberner/kotlin-firststeps

Last synced: 7 months ago
JSON representation

First baby steps with Kotlin

Awesome Lists containing this project

README

          

# First steps with Kotlin
This project contains several small baby step examples with different Kotlin frameworks.
## Hello world
A simple hello world example.
## Rock-Paper-Scissors Kata
A coding kata to implement a small Rock Paper Scissors game in Kotlin.
#### Game rules
Just in case you forgot the rules, here they are:
1. Either player decides between rock, paper or scissors.
2. At the same time, both reveal their decision.
3. Rock beats scissors, scissors beat paper, paper beats rock.
## REST-assured in Kotlin
A simple example of an API Test implemented with [REST-assured for Kotlin](https://github.com/rest-assured/rest-assured/wiki/Usage#kotlin).
Inspired by [this](http://code.haleby.se/2019/09/06/rest-assured-in-kotlin/) blog post.
## Asynchronous Testing with Awaitility in Kotlin
Some small examples of how one can use the DSL [Awaitility](https://github.com/awaitility/awaitility) in Kotlin.