Tim,
I agree and have submitted feedback that we need to improve the BlockScript documentation on this point. In the mean time here is some information that would be useful.
BlockScript is strict on datatypes. So you could not assign a integer or float to a logical:
LOGICAL abc;
abc = 1;
That is where the TRUE and FALSE literals come in to use. They are of the datatype LOGICAL. In C the datatype for logical is the same as numeric, where as Ada has a seperate datatype. Since BlockScript can be generated into both Ada and C code we need to use the stricter of the two.
Another thing to note with datatypes is that BlockScript will do implicit datatyping for INTEGER and FLOAT datatypes, where as LOGICAL needs an explicit definition. If you assign a number to a variable ( a = 2342 ) then if it does not have any decimal point (2.344) or exponential part (2e-3) then it is seen as an integer. If it has decimal point or exponent then it is typed as a float.
Both the e for the exponent and the TRUE and FALSE literals are not case-sensitive.
Carl L
National Instruments
www.ni.com/matrixxMessage Edited by Carl L. on 04-26-2005 01:27 PM