Anton Arhipov
Anton is a Developer Advocate at JetBrains. Working with TeamCity and IntelliJ IDEA. Programming in Java and Kotlin. Professional interests include programming languages and developer tooling. Java Champion since 2014. Co-organizer of DevClub.eu, a local developers community in Tallinn.
unfold_lessunfold_more Kotlin DSL in under an hour
Key takeaways
- Learn how to create type-safe and statically typed DSLs in Kotlin.
- Uncover the language features that makes DSL creation possible.
As Kotlin programming language is getting more popular, the creators of the libraries are starting to provide Kotlin API for their frameworks. The number of libraries that provide a nice little DSL grows constantly. The session introduces you to some of those libraries and explains, how Kotlin makes creating the DSL so simple. Lambdas, extension methods, lambdas with the receiver, and other syntactic sugar make it easy to implement DSL in Kotlin. In a live coding demo, we will create a simple DSL for the existing Java classes that could be used from a Kotlin code.