summaryrefslogtreecommitdiff
path: root/states.dot
blob: a6dea2884e0f38d9db271ce74b2187939485add7 (plain)
1
2
3
4
5
6
7
8
9
digraph fsm {
	arrive -> hungry;
	hungry -> eat;
	hungry -> starve;
	starve -> hungry;
	eat -> leave;
	eat -> think;
	think -> hungry;
}