Hans-Peter Diettrich wrote: > Can we make string literals accepted with embedded whitespace between > ordinal characters? > > Currently this is not accepted: > const x: string = #1 #2 #3; > and must be written as > const x: string = #1#2#3; //not very readable you can use const x: string = #1 + #2 + #3; marc