Created
June 12, 2018 08:46
-
-
Save chooyan-eng/20ca8983dff716fdc7e1edcbdd935c63 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 Child | |
# 商品の情報があればおつかいに行ける | |
def go_shopping(item) | |
shop = lookup(item) # 自分の記憶から、商品がどこで売っているかを考える | |
walk_to(shop) # お店に行く | |
buy(item) # 商品を買う | |
come_back(@home) # 家に帰ってくる | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment