Skip to content

Instantly share code, notes, and snippets.

@cwgem
Created July 28, 2011 16:57
Show Gist options
  • Select an option

  • Save cwgem/1111942 to your computer and use it in GitHub Desktop.

Select an option

Save cwgem/1111942 to your computer and use it in GitHub Desktop.
社員クラス
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