Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gdscript/tests/scripts/parser/warnings/integer_division.gd
10285 views
func test():
	# This should emit a warning.
	var __ = 5 / 2

	# These should not emit warnings.
	__ = float(5) / 2
	__ = 5 / float(2)
	__ = 5.0 / 2
	__ = 5 / 2.0
	__ = 5.0 / 2.0