Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 121 Bytes

repeat.md

File metadata and controls

10 lines (7 loc) · 121 Bytes

Repeat

Run part of the program the number of times you say.

for(let i = 0; i < 4; ++i) {
}

#examples