Return the value before run the execution block.
Example:
var value = "Hello"val blockString = value.runBlock { string += " World" }blockString // "Hello"value //Hello World"
1.4.0