mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 08:23:29 +00:00
9 lines
85 B
GDScript3
9 lines
85 B
GDScript3
![]() |
func test():
|
||
|
var i = 0
|
||
|
i += 5
|
||
|
i -= 4
|
||
|
i *= 10
|
||
|
i %= 8
|
||
|
i /= 0.25
|
||
|
print(round(i))
|