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
| # --- below is immutable object | |
| :lorem.object_id | |
| # 1190748 | |
| :lorem.object_id | |
| # 1190748 | |
| 1.object_id | |
| # 3 |
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
| number = 2 | |
| number.object_id | |
| # 5 | |
| number += 1 | |
| number.object_id | |
| # 7 |
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
| user = { | |
| name: 'John Doe', | |
| address: '282 Kevin Brook, Imogeneborough, CA 58517', | |
| ssn: '2321312313213123', | |
| phone: '123123123', | |
| items: ['purse', 'pants'] | |
| } | |
| items = user[:items] |
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
| qux = 'lorem'.freeze | |
| qux.object_id | |
| # 70097637306040 | |
| quux = 'lorem'.freeze | |
| quux.object_id | |
| # 70097637306040 |
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
| bar = 'lorem' | |
| bar.object_id | |
| # 70097637306020 | |
| baz.object_id | |
| # 70303892908040 | |
| baz | |
| # "WORLD world" |
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
| foo = 'hello' | |
| bar = 'world' | |
| baz = bar | |
| foo.object_id | |
| # 70303892924240 (this value may different on your machine) | |
| bar.object_id | |
| # 70303892908040 |