mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
8 lines
85 B
GDScript
8 lines
85 B
GDScript
func test():
|
|
var i = 0
|
|
i += 5
|
|
i -= 4
|
|
i *= 10
|
|
i %= 8
|
|
i /= 0.25
|
|
print(round(i))
|