Slide 44
Slide 44 text
Bring milk from the kitchen!
Robot' <- lift(Robot, glass, table)
Robot'' <- take(Robot', fridge, milk)
Robot''' <- pour(Robot'', milk, glass)
result <- put(Robot''', glass, table)
result <- Robot %>%
lift(glass, table) %>%
take(fridge, milk) %>%
pour(milk, glass) %>%
put(glass, table)
by using pipe,
# ①
# ②
# ③
# ④
# ①
# ②
# ③
# ④