Im new to tcl and i have these numbers:
set a 565056236086
set b 488193341805
the output of $a / $b
is 1,157443552992375
When i use the following code
set num [expr {double(round(100*$a / $b))/100}]
the output is: 1,15
but i want 1.16 how can i round it like that?