-
-
Save skydoves/dac40d947800843879199a70c9410618 to your computer and use it in GitHub Desktop.
extension_string
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
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