How to covert string to float and do the addition operation in velocity template.
I have tried below stuff but did not work.
$Float = 0.0
$stringValue= "5.5"
$sum = 0.0
$sum = $sum + $Float.parseFloat($stringValue).
above stuff did not work even, "$Float.parseFloat($stringValue)" does not evalueted.