Small example "freewheeling" app that can be modified without restarting
on.draw = function()
	love.graphics.clear(0,0,Night_blue)
	if #Stars == 0 then
		for i=1,100 do
			table.insert(Stars, {x=love.math.random()*800-400, y=love.math.random()*600-300, color=love.math.random(), radius=love.math.random()*3})
		end
	end
	love.graphics.push()
	love.graphics.translate(400,300)
	love.graphics.rotate(Angle)
	for _,star in ipairs(Stars) do
		love.graphics.setColor(star.color, star.color, 0)
		love.graphics.circle('fill', star.x,star.y, star.radius)
	end
	love.graphics.pop()
	--draw_debug()
end