enum Direction {
Up,
Down,
Left,
Right,
}
fn main() {
let my_direction = Direction::Up;
println!("We are going up!");