package org.hello

(1..10).collect { it*=2 }.each { print it+ " " }


result :  2 4 6 8 10 12 14 16 18 20