repeat package:base-compat

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