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
5000 24998 | |
1 0 | |
2 0 | |
3 0 | |
4 0 | |
5 0 | |
6 0 | |
7 0 | |
8 0 | |
9 0 |
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 Dishware | |
def initialize(material) | |
@material = material | |
end | |
def 固形を入れる(); end | |
def 液体を入れる(); end | |
def 落とす() |
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 Dishware | |
def initialize(material) | |
@material = material | |
end | |
def 固形を入れる(); end | |
def 液体を入れる(); end | |
def 落とす() |