module Kernel

def Async(*arguments, **options, &block)

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