edn-format / edn

Extensible Data Notation
2.6k stars 96 forks source link

Are \newline and \return considered the same? #15

Closed richard-lyman closed 12 years ago

richard-lyman commented 12 years ago

Two specific areas: Single-line comments and Characters.

bpsm commented 12 years ago

In Clojure \newline is line feed (ASCII 10) while \return is carriage return (ASCII 13).

richard-lyman commented 12 years ago

True. They are different characters. I'm wondering if the un-mentioned \return is intentional or if it's assumed that wherever \newline is referred to \return is also valid.