Created
January 19, 2010 09:50
-
-
Save ukstudio/280813 to your computer and use it in GitHub Desktop.
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
| require 'switcher' | |
| class Lamp | |
| include Switcher | |
| def turn_off | |
| puts "#{self}消しました" | |
| end | |
| def turn_on | |
| puts "#{self}付けました" | |
| end | |
| end |
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
| module Switcher | |
| def turn_off | |
| puts 'オフ' | |
| end | |
| def turn_on | |
| puts 'オン' | |
| end | |
| end |
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
| require 'switcher' | |
| class Lamp | |
| include Switcher | |
| def turn_off | |
| puts "#{self}消しました" | |
| end | |
| def turn_on | |
| puts "#{self}付けました" | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment