Last active
March 30, 2016 13:27
-
-
Save spanuska/74c5c7907444a0eb358044e71131410e to your computer and use it in GitHub Desktop.
Book with named keyword arguments
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
class Book | |
.... | |
def initialize(title: 'Unknown', author: 'Unknown') # This is the Ruby >= 2.0 syntax. | |
@title = title | |
@author = author | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment