I'm using dhall as a means of defining certain structs which can accept decimals and integers as input. I used the Double type for this as it seemed like a good fit to cover both cases, but I'm running into some issues when rendering them to text where things are converted to using scientific notation:
dhall text <<< 'Double/show 419430400.0'
4.194304e8
and
dhall text <<< 'Double/show 0.0001'
1.0e-4
Is there a way to turn off scientific notation altogether and represent Doubles are Decimals in the conversions to text?
Is there a more appropriate type to use in this case?