{- Render an `Integer` as `Text` using the same representation as Dhall source code (i.e. a decimal number with a leading `-` sign if negative and a leading `+` sign if non-negative) Examples: ``` ./show -3 = "-3" ./show +0 = "+0" ``` -} let show : Integer → Text = Integer/show in show