Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Last active December 29, 2020 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PatilShreyas/cf39d3be9918a2bce125500850f7e2bf to your computer and use it in GitHub Desktop.
Save PatilShreyas/cf39d3be9918a2bce125500850f7e2bf to your computer and use it in GitHub Desktop.
fun TextBuilder(builder: StringBuilder.() -> Unit): String {
return StringBuilder().apply(builder).toString()
}
fun main() {
val string = TextBuilder {
append("Welcome To Kotlin World")
append("\nEnjoy")
}
println(string)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment