repeat3
repeat3 is a fixed-count control structure used to execute a block of code three times in immediate succession. It represents a concise form of a loop when the exact number of iterations is known in advance and constant.
In languages that support it as a syntactic construct, repeat3 applies the enclosed block three times without
Examples and usage notes: a call like repeat3 { print("tick") } would perform the print operation three times.
Variants of the concept include repeatN, which repeats a block N times, and general fixed-count forms that