Some old sources that we have contain declarations like:
type string80 = string [80];
These declarations get broken up into 3 lines:
type string80 = string
[80];
where I would expect:
type string80 = string[80];
Logged In: YES user_id=66544 Originator: NO
I'm not seeing this behaviour in my test cases. I'm seeing output with the declaration all on one line, e.g.: var ls: string[10];
Log in to post a comment.
Logged In: YES
user_id=66544
Originator: NO
I'm not seeing this behaviour in my test cases.
I'm seeing output with the declaration all on one line, e.g.:
var
ls: string[10];