c0083c0f90
This also ignores `.out` files in the file format static checks.
8 lines
130 B
GDScript
8 lines
130 B
GDScript
func test():
|
|
# `and` should be used instead.
|
|
if true && true:
|
|
pass
|
|
|
|
# `or` should be used instead.
|
|
if false || true:
|
|
pass
|