Skip to content
Vala Documentation
Search
K
Main Navigation
Get Started
Tutorials
Guides
Resources
Sample Code
Tooling
Genie
FAQ
About
Appearance
Menu
Return to top
On this page
2.5. Foreach
Java:
java
for
(
int
i
:
numbers) {
}
Vala:
vala
foreach
(
int
i
in
numbers) {
}