Created
August 18, 2014 22:35
-
-
Save mietek/d41bd384bb61073704a7 to your computer and use it in GitHub Desktop.
Indentation woes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> let author = | |
{ name: "P" | |
, interests: [] | |
} | |
(line 2, column 5): | |
unexpected "n" | |
expecting expression | |
> let author = | |
{ name: "P" | |
, interests: [] | |
} | |
(line 3, column 5): | |
unexpected "," | |
expecting expression | |
> let author = | |
{ name: "P" | |
, interests: [] | |
} | |
> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment