Use of escape character backslash (\) in ROOT

Hi guys,

I just want to ask if the escape character backslash () is also supported in ROOT when breaking a ROOT statement which is long into multiple lines, like so:

TGLayoutHints *fL1, *fL2, *fL3, \ *fL4, *fL5, *fL6, \ *fL7,*fL8;

[quote=“manaila”]Hi guys,

I just want to ask if the escape character backslash () is also supported in ROOT when breaking a ROOT statement which is long into multiple lines, like so:

TGLayoutHints *fL1, *fL2, *fL3, \ *fL4, *fL5, *fL6, \ *fL7,*fL8;[/quote]

It’s not needed. You can just type

int one, two, three,
     four, five, six;

with no problem.

Cheers,
Charles