We can have lazy interpolation in Strings. This is different than normal interpolation as the GString can potentially have different values, depending on the closure, whenever it is converted into a String.
def str = 'old'
def interpolated = "I am the ${ -> str} value"
assert interpo...