Threads and closures

will this work?

for (person in people) {
thread {
println(person.Name)
}
}

Yes, with some caveats. What is your concern?