fix tipo error and create enum to represent instructions

This commit is contained in:
mhart 2020-10-06 23:28:59 +02:00
parent e6433f48ae
commit b811b1a1c1
1 changed files with 7 additions and 1 deletions

View File

@ -1,8 +1,14 @@
enum Orientation {
enum Orientations {
N,
E,
S,
W,
}
enum Instructions {
L,
R,
F,
}
fn main() {}