Whitespace questions

This commit is contained in:
Tony Garnock-Jones 2021-03-07 21:49:57 +01:00
parent dc96f74075
commit e894d0dbbc
1 changed files with 8 additions and 0 deletions

View File

@ -29,3 +29,11 @@ not. There's only one (?) at the moment, the `%i"f"` in `Float`;
should it be changed to case-sensitive?
Q. Should `IOList`s be wrapped in an identifying unary record constructor?
Q. Whitespace - is having `,` as whitespace sensible or not? I can
think of arguments both ways. Similarly, JSON *benefits* from
requiring a comma separating each item in a list; we currently don't
require any whitespace at all between elements of a list, making it
ambiguous: does `[123]` denote a single-element or a three-element
list? Compare JSON where `[1,2,3]` is unambiguously different from
`[123]`.