We should decide a standard format for reading and writing automatas. Something like: ``` Haskell dfa alpha: [a,b,c] states: [A,B,C] A a -> A A b -> B A c -> B B a -> B B c -> C C a -> C ``` (Maybe `alpha` and `states` are not necessary)