예:
int sum = 0 [1, 2, 3].each { sum += 'as' } println(sum)
결과적으로 integer 변수 sum이 String 식으로 재대입됩니다.
integer
String