mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-14 12:18:45 +00:00
10 lines
146 B
Java
10 lines
146 B
Java
import java.util.Arrays;
|
|
public class ForEach {
|
|
{
|
|
for (int i : Arrays.asList(1, 2, 3)) {
|
|
System.out.println(i);
|
|
// Do something
|
|
}
|
|
}
|
|
}
|