The following code: ```fsharp type Phillip = { Name: string; Age: int} let p = { Name="Phillip"; Age=28} let ap = {| Name="Phillip"; Age=28 |} ``` Prints _values_ in FSI that are identical:  The types are pretty-printed correctly as you would expect.
The following code:
Prints values in FSI that are identical:
The types are pretty-printed correctly as you would expect.