Assume I want to create a static string, I can do this like s"""123"""
, but if 123 is already defined in the variable [result]
val result = "123"
I don't know that is there a syntax to combine s (interpolator) with the string variable or interpolator is only for static text?