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_usage.gd
10286 views
var a = 1

func test():
	print(a)
	var a = 2
	print(a)