I am using MCS+ 3.0.0.0 with PBPL 2.60

I had a small play with the new LONG data types and get the following odd results.

I can delcare
LW var long
LX var long
LY var long
LZ var long

then
LW = 1234
LX = 4321
LY = LW * LX
LZ = LX/LW

debug "Long test ", #lw, ",", #lx, ",", #ly, ",", #lz

yields the following results
Long test 1234, 4321, 23698, 3

How do I use the new LONG variables?
Brian