c0083c0f90
This also ignores `.out` files in the file format static checks.
14 lines
205 B
GDScript
14 lines
205 B
GDScript
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 \
|
|
and 2 == 2 and \
|
|
3 == 3:
|
|
pass
|