OSS로 공부 :: Kotlin - Function literals with receiver

똑같은 코드는 이제 그만

전편에 이어 이번에도 똑같은 코드를 다시 한 번 볼 것이다.

1
2
3
4
5
6
7
8
fun bot(body: Bot.Builder.() -> Unit): Bot = Bot.Builder().build(body)

fun main(args: Array<String>) {
val bot = bot {
token = "YOUR_API_KEY"
}
bot.startPolling()
}

OSS로 공부 :: Kotlin - Trailing lambda

Kotlin-Telegram-Bot

코틀린용 텔레그램 봇 라이브러리.

Start수가 아주 높진 않아도 굉장히 잘 만들어진 라이브러리이다. 최근까지 지속적으로 업데이트를 하고 있으며 사용법도 굉장히 간단하고 쉬워서 애용한다.

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×