Back
A Linguist script language consists of a set of whitespace-delimited tokens, mainly words consisting of alphabetic characters. The exact content of the language is up to you but you must follow the general rules. Very few non-alphabetic or numeric symbols are needed; in fact only four symbols are used in the language:
Everything else is alphabetic characters and numbers.
So the following lines are legal:
but these are not:
As you can see, there's nothing to stop you creating an all-German or all-French scripting language.
Every script language command starts with a keyword token, defined according to the structure of the language you are building.
And finally, Linguist pays little regard to line breaks. The only exceptions are comments and quoted text strings, neither of which may continue from one line to the next.