blob: 3b24b7ad5ac5766709a5c201c10e0918ec12351a [file] [log] [blame]
for (it in [1, 2, 3]) {
if (it % 2 == 0) {
continue
}
print 2
}