Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gdscript/tests/scripts/parser/warnings/standalone_ternary.gd
10285 views
func test():
	1 if true else 2
	print(1) if true else print(2)