Difference between revisions of "Floor - Math"
m
→Examples: Added "Math." prefix
imported>Plplecuyer |
imported>Ice Eyes m (→Examples: Added "Math." prefix) |
||
Line 19: | Line 19: | ||
== Examples == | == Examples == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
int x = Floor(2.1) ; x == 2 | int x = Math.Floor(2.1) ; x == 2 | ||
int y = Floor(5.9) ; y == 5 | int y = Math.Floor(5.9) ; y == 5 | ||
</source> | </source> | ||