Is there an easy method of printing multi-line text?
So, instead of
out.println('Dear Sir,');
out.println('It has come to our attention that you are');
out.println('not paying your bills! This is a terrible');
out.println('and horrible thing and we think you shoud');
out.println('be aware of the hideous consequences of');
out.println('your gambling debt.');
In 'some other languages' you can just go
print <<EOF;
blalsdfaf
rfgewrgwegwegwer
gewrgwergewrgewr gwerg ewrg
wergwer gewrg werg werg werg
EOF
Is there a java equivelant?
Thanks
So, instead of
out.println('Dear Sir,');
out.println('It has come to our attention that you are');
out.println('not paying your bills! This is a terrible');
out.println('and horrible thing and we think you shoud');
out.println('be aware of the hideous consequences of');
out.println('your gambling debt.');
In 'some other languages' you can just go
print <<EOF;
blalsdfaf
rfgewrgwegwegwer
gewrgwergewrgewr gwerg ewrg
wergwer gewrg werg werg werg
EOF
Is there a java equivelant?
Thanks