Created
December 14, 2013 20:36
-
-
Save leafo/7964627 to your computer and use it in GitHub Desktop.
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
this.is.a.long.line | |
-- in coffee script we can do this: | |
this | |
.is.a | |
.long.line | |
-- but in moonscript, with's syntax uses the . as prefix for line | |
with something | |
.hello | |
-- so to break up long lines I would have to do something like this: (not supported yet) | |
this. | |
is.a. | |
long.line |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment