1
1
mirror of https://github.com/github/semantic.git synced 2024-12-21 05:41:54 +03:00
semantic/test/fixtures/java/corpus/For.B.java

8 lines
158 B
Java
Raw Normal View History

2018-06-02 00:09:56 +03:00
class ForDemo {
public static void main(String[] args){
2018-07-24 23:51:48 +03:00
for(int i: list){
2018-06-02 00:09:56 +03:00
System.out.println("Count is: " + i);
}
}
}