Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gdscript/tests/scripts/parser/warnings/deprecated_operators.gd
10285 views
func test():
	# `and` should be used instead.
	if true && true:
		pass

	# `or` should be used instead.
	if false || true:
		pass