Recent Posts

Map in Kotlin

less than 1 minute read

So we have seen the wonderful Set. Next, we are going to look at Map.

Why package

less than 1 minute read

A fundamental principle in programming is the acronym DRY: Don't Repeat Yourself.

Set

less than 1 minute read

In computer science, Set is an interesting abstract data type that stores unique values. It is a collection that allows only one element of each value.

Infix notation in function

less than 1 minute read

Another Kotlin treasure that I have not known is the ability to write infix notation in function. We use infix notation in most arithmetic operation such as ...

Variable Argument Lists

less than 1 minute read

Do you know what vararg keyword is? Using this vararg, you can define a function that takes any number of argument.

Kotlin testing framework

1 minute read

Alright. Who here think that testing is optional? Even though some doesn’t write tests, I believe no one will openly say so. Oops. it hurts.