Skip to content

Instantly share code, notes, and snippets.

@mistyrinth
Last active November 24, 2018 08:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mistyrinth/70d3b007c1a6f9d4960f4ced781b598f to your computer and use it in GitHub Desktop.
Save mistyrinth/70d3b007c1a6f9d4960f4ced781b598f to your computer and use it in GitHub Desktop.
# クラスの定義
class Pet
def initialize(petname)
@name = petname
end
def dispName
print(@name, "\n")
end
end
# オブジェクトの作成
pet1 = Pet.new("Bella")
pet1.dispName
pet2 = Pet.new("Duke")
pet2.dispName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment