module Kernel

def Async(*args, &block)

Run the given block of code in a task, asynchronously, creating a reactor if necessary.
def Async(*args, &block)
	::Async::Reactor.run(*args, &block)
end