เฉลยแบบฝึกหัด Learn to Code 1
บทที่ 2 Functions
แบบฝึกหัด Composing a New Behavior
โจทย์ Use composition to turn to the right.
คำแปล ใช้วิธีการรวมคำสั่ง เพื่อหันไปด้านขวา
เฉลย Composing a New Behavior
func turnRight() {
turnLeft()
turnLeft()
turnLeft()
}
moveForward()
moveForward()
moveForward()
turnRight()
moveForward()
moveForward()
moveForward()
collectGem()
ขอบคุณภาพจาก Swift Playgrounds
-- ดีบี --