This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package kubs | |
const val START = 0 // static final in Java for primitive | |
const val END = 4 | |
fun main(vararg args: String) { | |
//val is immutable like final in Java | |
val start = setOf( // syntax sugar and immutable ish (read-only cause is a Java Collection) | |
Pair(0, 1), Pair(0, 3), |