Hello,

I am trying to add numbers or doing multiplication with decimals.

debug on
open (1,result.txt,5)
$a = 67.0
$b= 3.5
$d = $a + $b ;should be 70.5
$e = $a * $b ;should be 234.5
? $d
? $e
$d = ''+$d
$e = ''+$e
writeline (1,$d + @crlf + $e )

Does someone can help.
I also got some calculation in a variable to do with many decimals,
ex.: 45 * .067 and the result need to get 3 decimals.