foreach(What?)
I’ve been adapting to Java 1.5 and c# (and c#, with .NET 2.0), all of which feature a new construct: the foreach loop. The syntax is relatively similar to the construct in numerous other languages, such as perl’s: foreach $var (@list){ # … } In c# (or java, the syntax is the same), to loop [...]