Skip to content

Instantly share code, notes, and snippets.

@mobp
Created August 10, 2010 11:38
Show Gist options
  • Save mobp/517122 to your computer and use it in GitHub Desktop.
Save mobp/517122 to your computer and use it in GitHub Desktop.
なまえ付きひきすう風メソッドの例
class Window
def initialize
@default = {
:width => 640,
:height => 480,
:title => "window"
}
end
def change element={}
@default.update element
end
end
win = Window.new
win.change :width => 1920, :height => 1080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment