mirror of
https://github.com/godotengine/godot.git
synced 2025-10-21 17:03:42 +00:00
9 lines
130 B
GDScript3
9 lines
130 B
GDScript3
![]() |
func test():
|
||
|
# `and` should be used instead.
|
||
|
if true && true:
|
||
|
pass
|
||
|
|
||
|
# `or` should be used instead.
|
||
|
if false || true:
|
||
|
pass
|