📅  最后修改于: 2022-03-11 14:56:04.560000             🧑  作者: Mango
代码示例2
# Use "return"
func _ready():
if some_condition:
print("true")
else:
return # breaks execution of the entire function
print("test")