PtokaX forum

Development Section => Your Developing Problems => Topic started by: pHaTTy on 31 January, 2004, 17:29:11

Title: great, lower or equal
Post by: pHaTTy on 31 January, 2004, 17:29:11
Hi there,,

got a question for greater or equal and below is it something like

if b1 => b2 or b1 <= b2 then

will that work for great lower or equal

=> and <= ???
Title:
Post by: c h i l l a on 31 January, 2004, 17:43:25
hmm you code works allways  change the or to and and you will only have equal.. I think...
Title:
Post by: plop on 31 January, 2004, 17:46:24
if b1 and b2 then
it's always greater/equal or smaller unless it's nil, then it's nothing.
compairing with nil gives an error but it's avoided by this.

plop