Lookout doesn't have bitwise operators, so it's a little complex to get each bit.
Assume X is the word(16 bit unsigned int), you can get each bit by following expressions
X>=32768 most significant bit
mod(X, 32768)>=16384
mod(X, 16384)>=8192
......
mod(X, 2)>=1 least significant bit
The output is true or false.
Ryan Shi
National Instruments