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