เฉลยแบบฝึกหัด Learn to Code 1
บทที่ 2 Functions
แบบฝึกหัด Creating a New Function
โจทย์ Define and use your own function to turn right.
คำแปล กำหนดและใช้ฟังก์ชันของคุณเองเพื่อหันขวา
เฉลย Creating a New Function
func turnRight() {
turnLeft()
turnLeft()
turnLeft()
}
moveForward()
turnLeft()
moveForward()
turnRight()
moveForward()
turnRight()
moveForward()
turnRight()
moveForward()
turnLeft()
moveForward()
toggleSwitch()
ขอบคุณภาพจาก Swift Playgrounds
-- ดีบี --