Hi all,
I am writing a very simple ruby script and has a few checks:
if true and true and true then
else
end
Why can I not format it this way
if true
and true
and true
then
else
end
Ruby blows up if I do it that way. I want do do it that way so my lines are crazy long. I simply made the criteria a function so that solves the problem, but I still feel very limited if I can't put that onto a separate line.
Walter