Toy brainf**k interpreter; example app that can be modified without restarting
-- A debugging aid to animate intermediate results in computations.
-- Can only be called from functions invoked using `animate()`.
loiter = function()
	coroutine.yield()
end