The Girl

Turing State Attributes
- polymorphic
- polyphonic
- polysyllabic
- polyamourous :D
…initializing FSM instance…
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class FiniteStateAutomaton
  def initialize (girl, location)
    @girl = girl
    @location = location
  end

  def start input
  end

  def done
  end
end

romy = FiniteStateAutomaton.new(saerom, new_york_city)
romy.start life_circuit

Comments