Created
July 28, 2011 16:57
-
-
Save cwgem/1111942 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
| class Employee | |
| attr_accessor :first_name | |
| attr_accessor :last_name | |
| attr_accessor :monthly_sales | |
| def to_s | |
| "#{@first_name} #{@last_name}: #{@monthly_sales}" | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment