In source text, multi-line constants can be initialized in two ways:
- 'classic', which uses line feed and string concatenation
- 'crazy' where lines are separated by whitespace
The second method complicates the perception; when using it, it is easy to make and miss a mistake.
Difficulty understanding:
String = "BBB" "CC"
"F";
Classic variant:
String = "BBB" + "CC"
+ "F";