mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
12 lines
128 B
D
12 lines
128 B
D
module comma;
|
|
|
|
void main()
|
|
{
|
|
int i=0,j=0;
|
|
for (; i<10; i++,j++)
|
|
{
|
|
}
|
|
assert(i == 10);
|
|
assert(j == 10);
|
|
}
|