You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
Unify typing of variables, constants and parameters in GDScript
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
func test():
|
||||
var bar = 1
|
||||
var foo: float = bar
|
||||
print(typeof(foo))
|
||||
print(foo is float)
|
||||
Reference in New Issue
Block a user