From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910111213141516171819 if (foo || bar) {}if (foo||bar && baz) {}if (foo|| bar&&baz) {}if (foo || bar && baz) {}// Spacing after || below is ignored as it is EOL whitespace.if (foo || bar && baz) {}if (foo|| bar &&baz) {}
if
(foo || bar) {}
(foo||bar && baz) {}
(foo|| bar&&baz) {}
(foo || bar && baz) {}
// Spacing after || below is ignored as it is EOL whitespace.
(foo ||
bar
&& baz
) {
}
(foo||
&&baz