def ab = [1,2]
for(int i=0; i<ab.size(); i++){
	println(ab[i])
}
if(ab.size() && ab[1]?.isInteger()){
	println("Inside IF")
}