class Kleene::NFATransition

def initialize(token, from_state, to_state)

def initialize(token, from_state, to_state)
  @token = token
  @from = from_state
  @to = to_state
end