original.sol 208 B

1234567
  1. contract EnumDefinitions {
  2. enum Empty {
  3. }
  4. enum ActionChoices { GoLeft, GoRight, GoStraight, SitStill }
  5. enum States { State1, State2, State3, State4, State5, State6, State7, State8, State9 }
  6. }