KiXtart environment:
Windows 95
KiXtart 4.10 RC2.

While playing with the new variable types I noticed that "double" variables within strings are not evaluated. Integers are fine. Here is some code which illustrates this:
code:
$v=0.0+3/2
"v=" $v ", type=" VarTypeName($v) ?
"v=$v, type=" VarTypeName($v) ?
$v=3/2
"v=" $v ", type=" VarTypeName($v) ?
"v=$v, type=" VarTypeName($v) ?

Results are:
quote:
v=1, type=Double
v=, type=Double
v=1, type=Long
v=1, type=Long