blob: 10e6eb6a4f60a674f554a724da5076355349869c [file] [log] [blame]
let y = 0;
for x in range(0, a) {
if(x<10) {
continue;
}
y = y + x;
}
y