Created
February 11, 2015 13:31
-
-
Save AyaMorisawa/a8c43032be548ea4898c to your computer and use it in GitHub Desktop.
Clone in LiveScript
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
a = name: 'alice' | |
console.log a.name | |
b = ^^a | |
console.log b.name | |
b.name = 'bob' | |
console.log b.name | |
console.log a.name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment