/* This is a Chapel test file /* that uses a nested comment */ and
prints a message from each core of a laptop, cluster, or supercomputer.
*/coforall loc inLocales {
on loc {
const nTasks = here.numPUs();
forall i in0..<nTasks dowriteln("Hello from task ", i, " of ", nTasks, " on locale ", loc.name);
}
}