Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 484 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 484 Bytes

KotlinDSL

This Repo demonstrates the use of Kotlin DSL to makes your code more easily readable. DSL make the code easily readable not only for developers but for any non technical person.

Getting Started

This project is a starting point for creating your own Kotlin DSL.

  1. we have two data class Person and Address in PersonModel to store our data.
  2. we have PersonDsl for creating our own very first Kotlin Dsl.
  3. We have MainActivity where we will see our DSl in action.