mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
7 lines
117 B
GDScript
7 lines
117 B
GDScript
func coroutine() -> void:
|
|
@warning_ignore("redundant_await")
|
|
await 0
|
|
|
|
func test():
|
|
await coroutine()
|
|
coroutine()
|