return godot code example
Example 1: gdscript default parameters
func foo(a,b=1,c=2):
...
foo("first param", "second param") # the third parameter will have the default value "2"
Example 2: godot return
func _callout():
info = _grabbing_info()