module Fiber::Annotation

def initialize(annotation: nil, **options, &block)

@parameter annotation [Object] The annotation to set.
Annotate the current fiber with the given annotation.
def initialize(annotation: nil, **options, &block)
	@annotation = annotation
	super(**options, &block)
end