blob: 2df7cd71030b5ad2864d5ab7e3f17f0033af86b5 [file]
let y = 0;
for x in range(0, a) {
if(x > 3) {
break;
}
y = x;
}
return y;