Skip to content

2.5. Foreach ​

Java:

java
for (int i : numbers) {
}

Vala:

vala
foreach (int i in numbers) {
}