Skip to content

Instantly share code, notes, and snippets.

@bijancn
Created May 30, 2018 13:44
Show Gist options
  • Save bijancn/195b05b06f507f6c9e39389ff72e2240 to your computer and use it in GitHub Desktop.
Save bijancn/195b05b06f507f6c9e39389ff72e2240 to your computer and use it in GitHub Desktop.
val x = new java.lang.StringBuilder("Hello")
val r1 = x.append(" World").toString
// 'Hello World'
val r2 = x.append(" World").toString
// 'Hello World World'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment