Prelude-v21.1.0
show "ABC" ≡ "\"ABC\""
show '' ${"\u0000"} $ \ ${" "}☺''≡ "\"\\u0000 \\u0024 \\\\ \\n ☺\""
{-Render a `Text` literal as its own representation as Dhall source code (i.e. adouble-quoted string literal)-}let show : Text → Text = Text/showlet example0 = assert : show "ABC" ≡ "\"ABC\""let example1 = assert : show '' ${"\u0000"} $ \ ${" "}☺'' ≡ "\"\\u0000 \\u0024 \\\\ \\n ☺\""in show