#minor and major
1 messages · Page 1 of 1 (latest)
iirc if it's 0..5 it any value from 0 to 5
..0 less than zero and 0.. greater than zero?
That may be how it works..?
?
“..” when before an integer means less than or equal to <int>
“..” after an integer means greater than or equal to <int>
“..” in between 2 integers means from <int> to <int> inclusive
(Meaning including the integers given)
Ex:
“..100” - means less than or equal to 100
“100..” - means greater than or equal to 100
“0..100” - means from 0 to 100 inclusive