2 local str, str2, str3, result
4 str = "We think in generalities, but we live in details."
5 str2 = str.substr(12, 12)
6 pos = str.indexof("live")
8 result = str2 + " " + str3
9 println("result: ", result)
10 assert(result == "generalities live in details.")