On Wed, 10 Nov 2010, Sven Schreiber wrote:
the following script gives an error at the != comparison for the
string
variable:
<script>
string check = "h"
if check="h"
print "equality check works"
endif
if check!="h"
print "but inequality doesn't"
endif
</script>
I'm not sure if any of this is supposed to work, but at least the
equality part is very useful for me.
The equality part is documented as working; the inequality part
was just not implemented. That was an oversight, now fixed in CVS.
Allin