Created
July 7, 2016 12:56
-
-
Save lpil/01faece78a27b8c1a084cd660bf14f0c 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
| print( | |
| "hello" | |
| ) | |
| print([ | |
| 1, | |
| 2, | |
| ]) | |
| vs | |
| print( | |
| "hello" | |
| ); | |
| print([ | |
| 1, | |
| 2, | |
| ]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment