Started by
NameGoesStop
on
Topic category: Help with Minecraft modding (Java Edition)
So in mcreator I see the =, >, and <. But I don't under stand the ones like ≤, ≥. What does ≤, ≥ mean?
Topic category: Help with Minecraft modding (Java Edition)
So in mcreator I see the =, >, and <. But I don't under stand the ones like ≤, ≥. What does ≤, ≥ mean?
≤ is less than or equal to. ≥ is greater than or equal to. So, 12 ≤ 13 can be replaced with [[12 < 13] or [12 = 13]] and 12 ≥ 13 can be replaced with [[12 > 13] or [12 = 13]]. Hope this helps!
Yo tysm, I thought that at first but I wasn't really sure! Thanks for your help!
You are welcome!
≤
is commonly written as<=
in code and≥
is usually>=
. This applies to Java, C and Lua, in case you wanna get into that ;)