mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-13 22:19:08 +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
|
|
}
|
|
}
|
|
}
|