Skip to content

Instantly share code, notes, and snippets.

@MithraTalluri
Last active September 18, 2019 07:02
Show Gist options
  • Save MithraTalluri/24298c475561fb7ee316a6beb2af1c5c to your computer and use it in GitHub Desktop.
Save MithraTalluri/24298c475561fb7ee316a6beb2af1c5c to your computer and use it in GitHub Desktop.
fun String.lastChar() = get(length - 1) //returns the last char in a string
val lastChar: Char = "abcd".lastChar() // d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment