class Async::List

def initialize

Initialize a new, empty, list.
def initialize
	@head = self
	@tail = self
	@size = 0
end