Created
October 21, 2016 10:23
-
-
Save sliskiCode/82d0324f516f4c0019f14712a2fee101 to your computer and use it in GitHub Desktop.
Builders in Kotlin. Gist 1
This file contains 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
import lombok.Builder; | |
@Builder | |
class Person { | |
private final String name; | |
private final String surname; | |
private final int age; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment