Skip to content

Instantly share code, notes, and snippets.

View kargozeyan's full-sized avatar
🦈
Focusing

Karen Gozeyan kargozeyan

🦈
Focusing
View GitHub Profile
import kotlinx.coroutines.launch
import kotlinx.coroutines.runBlocking
import java.util.*
fun main() {
val a = Stack<Int>().also {
it.push(9)
it.push(8)
it.push(7)
it.push(6)