class Async::Scheduler

def fiber(&block)

def fiber(&block)
	task = Task.new(&block)
	
	task.resume
	
	return task.fiber
end