Hello everyone, I found this code is not working (using jal jalv25r7, but also older versions). Can anyone pls verify:
*var byte i* *function test() return byte is return 0end function* *i=test()* *if i>0 & i<13 then* * -- goes here but is wrong* *else* * ..* *end if* but this code works: *var byte i* *function test() return byte is return 0end function* *i=test()* *if i<13 & i>0 then* * ..* *else* * -- goes here and OK* *end if* if you remove the function, it works, too: *var byte i* *i=0* *if i>0 & i<13 then* * ..* *else* * -- goes here and OK* *end if* -- You received this message because you are subscribed to the Google Groups "jallib" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jallib/2b197dbf-4628-4acd-b13c-11e3b6ba2228n%40googlegroups.com.
