``` purescript data Person = Person { "first name" :: String , "last name" :: String , address :: Address } ``` Using `gShow` with this structure returns: ``` purescript {address: Main.Address {city: "Faketown", state: "CA"}, first name: "John", last name: "Smith"} ``` which is obviously not valid PureScript. It should return: ``` purescript {address: Main.Address {city: "Faketown", state: "CA"}, "first name": "John", "last name": "Smith"} ```
Using
gShowwith this structure returns:{address: Main.Address {city: "Faketown", state: "CA"}, first name: "John", last name: "Smith"}which is obviously not valid PureScript. It should return:
{address: Main.Address {city: "Faketown", state: "CA"}, "first name": "John", "last name": "Smith"}