Haluk DUMAN schrieb:
> Hi list,
> {First excuse my poor english}
> What is the "Line Continuation" character for FPC ?
there is no "line continuation" in Pascal. You can add a line break at
arbitrary positions between two consecutive tokens. To split strings, use +:
'some long string, ' +
'continued in the second line'
- Sebastian