dhall-1.21.0: dhall-lang/Prelude/Text/show
{-
Render a `Text` literal as its own representation as Dhall source code (i.e. a
double-quoted string literal)
Examples:
```
./show "ABC" = "\"ABC\""
./show "\u0000 \$ \\ \n \u263a" = "\"\\u0000 \\u0024 \\\\ \\n ☺\""
```
-}
let show : Text → Text = Text/show in show