dancing_droids/src/main.rs

17 lines
164 B
Rust
Raw Normal View History

enum Orientations {
2020-10-06 23:25:17 +02:00
N,
E,
S,
W,
2020-10-06 20:34:48 +02:00
}
2020-10-06 23:25:17 +02:00
enum Instructions {
L,
R,
F,
}
fn main() {
let file_data = include_str!("../two_robots.txt");
}