Skip to content

Instantly share code, notes, and snippets.

@psylone
Last active August 29, 2015 14:05
Show Gist options
  • Save psylone/4919b848f4ecae91f0d3 to your computer and use it in GitHub Desktop.
Save psylone/4919b848f4ecae91f0d3 to your computer and use it in GitHub Desktop.
class Ship
attr_accessor :name
def construct name = 'Andromeda'
@name = name
end
end
Ship.new.construct.name # => 'Andromeda'
Ship.new.construct('Enterprise').name # => 'Enterprise'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment