mirror of
https://github.com/godotengine/godot.git
synced 2025-10-21 00:43:46 +00:00
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
|