c0083c0f90
This also ignores `.out` files in the file format static checks.
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))
|