Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created September 11, 2018 19:18
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 sajjadyousefnia/55099304d857c059f3bb3c52fd593329 to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/55099304d857c059f3bb3c52fd593329 to your computer and use it in GitHub Desktop.
>>> println("Kotlin".lastChar)
n
>>> val sb = StringBuilder("Kotlin?")
>>> sb.lastChar = '!'
>>> println(sb)
Kotlin!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment