Commit Graph

12 Commits

Author SHA1 Message Date
15d7b18af8 add methods to Rover 2023-11-02 23:44:48 +00:00
023923f06b improve names 2023-11-02 23:21:40 +00:00
e4bd2597d5 we can drive a rover with sequence of commands as string 2023-11-02 23:16:04 +00:00
f09e4d4bee use match instead of if/else
Rotation is an enum so leverage the compiler to tell us
we've considered all cases
2023-11-01 00:23:58 +00:00
c812b79363 implement rotation 2023-11-01 00:22:12 +00:00
a8e9ab810c implement backward()
this has meant changing the type signature of forward()
so that it accepts the rover by reference not value, and
making Facing a Copy type so that the direction passed to
forward can also be returned in its output
2023-10-31 23:51:45 +00:00
d8c0a21985 extract velocity function
note we have to pass a reference to "facing" not the
tuple itself, otherwise it owns it and we get
"value used here after move"
2023-10-31 23:32:20 +00:00
2b65145621 add S W E 2023-10-31 23:27:07 +00:00
5a148a2688 destructure rover in function param list 2023-10-31 23:17:36 +00:00
9348808ea9 don't hardcode return value in forward() 2023-10-31 23:14:54 +00:00
71d9c799b6 rover moves forward northward when pointing north 2023-10-31 22:51:32 +00:00
a4a80f450a "cargo new" and write a failing test 2023-10-31 22:10:48 +00:00