MED:
Vlad's right about ksh arithmetic being integer only. That's ksh88. However, the ksh93 version does support decimal arithmetic:
This works on my solaris 7 box:
#!/usr/dt/bin/dtksh
let sum=$((5.2+6.3))
printf "%f\n" $sum
# end script
The dtksh shell is 93 compliant.
Regards,
Ed