Skip to content

Instantly share code, notes, and snippets.

@chooyan-eng
Created June 12, 2018 08:46
Show Gist options
  • Save chooyan-eng/20ca8983dff716fdc7e1edcbdd935c63 to your computer and use it in GitHub Desktop.
Save chooyan-eng/20ca8983dff716fdc7e1edcbdd935c63 to your computer and use it in GitHub Desktop.
# 「子供」を表現するコード
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