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