Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created November 8, 2024 13:08
Show Gist options
  • Save skydoves/dac40d947800843879199a70c9410618 to your computer and use it in GitHub Desktop.
Save skydoves/dac40d947800843879199a70c9410618 to your computer and use it in GitHub Desktop.
extension_string
val String.firstChar: Char
get() = this[0]
val text = "Hello"
println(text.firstChar) // Output: H
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment