tomciopp (Thomas Cioppettini)
- Login: tomciopp
- Email: tom@tecrails.com
- Registered on: 04/10/2014
- Last sign in: 04/10/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
04/10/2014
-
06:04 AM Ruby Bug #9722 (Closed): Failure with multiple keyword arguments
- I am running ruby 2.1.1p76 (2014-02-24 revision 45161) [x86_64-darwin13.0]
Given the following person class:
~~~ruby
class Person
attr_reader :name, :age
def initialize name:, age:
@name = name
@age = age
end...