Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created February 17, 2026 01:14
Show Gist options
  • Select an option

  • Save skydoves/33071c5614ffe7b24cc8a7ac74a4d9db to your computer and use it in GitHub Desktop.

Select an option

Save skydoves/33071c5614ffe7b24cc8a7ac74a4d9db to your computer and use it in GitHub Desktop.
Kotlin Extension Function
fun String.addExclamation(): String {
return this + "!"
}
fun main() {
val result = "skydoves".addExclamation()
println(result) // Output: skydoves!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment