repeat package:base

repeat x is an infinite list, with x the value of every element.
>>> repeat 17
[17,17,17,17,17,17,17,17,17...
repeat x returns a constant stream, where all elements are equal to x.