2021-04-19 20:50:52 +02:00
|
|
|
func test():
|
|
|
|
|
# Line breaks are allowed within parentheses.
|
|
|
|
|
if (
|
|
|
|
|
1 == 1
|
|
|
|
|
and 2 == 2 and
|
|
|
|
|
3 == 3
|
|
|
|
|
):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
# Alternatively, backslashes can be used.
|
|
|
|
|
if 1 == 1 \
|
2024-01-22 11:31:55 -03:00
|
|
|
\
|
2021-04-19 20:50:52 +02:00
|
|
|
and 2 == 2 and \
|
|
|
|
|
3 == 3:
|
|
|
|
|
pass
|