package jen

// Add appends the provided items to the statement.
func ( ...Code) *Statement {
	return newStatement().Add(...)
}

// Add appends the provided items to the statement.
func ( *Group) ( ...Code) *Statement {
	 := Add(...)
	.items = append(.items, )
	return 
}

// Add appends the provided items to the statement.
func ( *Statement) ( ...Code) *Statement {
	* = append(*, ...)
	return 
}