get-programming-with-go
get-programming-with-go copied to clipboard
Source code listings for Get Programming with Go, a beginner's guide to the Go programming language.
Results
2
get-programming-with-go issues
Sort by
recently updated
recently updated
newest added
Lesson 3 in summary should say: You used **13** of the 25 Go keywords. **const** is missing from the list.
https://github.com/nathany/get-programming-with-go/blob/master/lesson31/rover/rover.go#L58 the current position is (5,0), the current direction is (1, 0), According to the formula provided in the code after the left current direction to become to (0,-1). the...