Lexical Rules in dongbei
masterString Constants
Use matching full-width Chinese double quotes (“...”) to define string constants.
Comments
Use the # character to start a comment. Everything from # to the end of the line is ignored, provided it is outside of a string constant.
Tokenization
The language is whitespace-insensitive. Spaces and newlines do not act as delimiters and can be added or removed without changing the logic (except inside string constants).
Naming and Brackets
Variables, functions, and types are called names. Because the language does not use spaces to separate names from keywords, you must use full-width Chinese square brackets 【】 to disambiguate names that contain keywords.
Example: 【阶乘】 ensures the name is treated as a single entity even if it contains the keyword 乘.