Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0b577be94249e2020dabbbe62c118e1195a8c3cd (plain) (blame)
1
2
3
4
5
6
class Example {
	void foo() {
		for (int i = 0 , j = 100; i < 10; i++, j--) {
		}
	}
}

Back to the top