Created
July 23, 2012 17:20
-
-
Save stevedomin/3164825 to your computer and use it in GitHub Desktop.
Commas : beginning of line vs end of line
This file contains 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
var tableau:Array = [ | |
'ligne 1', | |
'ligneeeee 2', | |
'une ligne parmis d\'autre', | |
'encore une ligne' | |
'l', | |
'etc. etc.', | |
'des lignes des lignes', | |
'llllllllllllll' | |
] | |
var tableau:Array = [ | |
'ligne 1' | |
, 'ligneeeee 2' | |
, 'une ligne parmis d\'autre' | |
, 'encore une ligne' | |
'l' | |
, 'etc. etc.' | |
, 'des lignes des lignes' | |
, 'llllllllllllll' | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment