mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 03:13:13 +01:00
13 lines
143 B
D
13 lines
143 B
D
module tangotests.loops1;
|
|
|
|
void main()
|
|
{
|
|
size_t n;
|
|
int x;
|
|
ushort foo;
|
|
for (n=0; n<8; n++,x++)
|
|
{
|
|
foo >>= 1;
|
|
}
|
|
}
|