mirror of
https://github.com/github/semantic.git
synced 2024-12-01 09:15:01 +03:00
8 lines
158 B
Java
8 lines
158 B
Java
class ForDemo {
|
|
public static void main(String[] args){
|
|
for(int i: list){
|
|
System.out.println("Count is: " + i);
|
|
}
|
|
}
|
|
}
|