Skip to content

Instantly share code, notes, and snippets.

@Kimundi
Created May 4, 2013 15:23
Show Gist options
  • Select an option

  • Save Kimundi/5517804 to your computer and use it in GitHub Desktop.

Select an option

Save Kimundi/5517804 to your computer and use it in GitHub Desktop.
enum State {
A, B, C
}
let mut state = A;
loop {
state = match state {
A => { ... }
B => { ... }
C => { ... }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment