saschamayr (Sascha Mayr)
- Login: saschamayr
- Email: mayr.sascha@gmail.com
- Registered on: 03/28/2014
- Last sign in: 03/28/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 0 | 1 |
Activity
03/28/2014
-
07:56 PM Ruby Feature #9686 (Open): Syntax for symbols used in hashes
- Symbols are often used literally as keys in hashes like this:
~~~ruby
{foo: 'bar'}
~~~
But acutally there is a little inconvenience when using the alternative `:"name"` literal syntax:
~~~ruby
string = 'foo'
{:"#{string}" =>...