The game is a word search game in an advanced lingo book and the lingo code is using [cc] which is coming up as a code fault. What is wrong or is this use of [cc] obsolete? And if so, how can it be corrected?
on getPropertyDescriptionList me
list = [:]
-- the text member with the words in it
addProp list, #pWordSource,[cc]
[#comment: "Word Source",[cc]
#format: #text,[cc]
#default: VOID]
addProp list, #pEndGameFrame,[cc]
[#comment: "End Game Frame",[cc]
#format: #marker,[cc]
#default: #next]
return list
end

I guess this is code from here, right?
That seems like an older version of Lingo syntax.
[cc], apparently, stands for "continuation character". It basically makes the compiler ignore the linebreak right after it, so that it sees everything from[#comment:to#default: VOID]as one long line, which is the syntactically correct way to write it.If I remember correctly, once upon a time, the guys who made Lingo made one more crazy decision and made the continuation character look like this:
¬Of course, this didn't print in lots of places, so some texts like your book used things like[cc]in its place.In modern versions of Lingo, the continuation character is
\, just like in C.