Our enum type ServerState has an underlying Int type.
The possible values for ServerState are defined as constants.
By implementing the Show interface, values of ServerState can be printed out or converted to strings.
If we have a value of type Int, we cannot pass it to transition - the compiler will complain about type mismatch. This provides some degree of compile-time type safety for enums.
transition emulates a state transition for a server; it takes the existing state and returns a new state.
To run the program, save the code in Main.idr and use the idris compiler to run it.