mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
New array literal support New array ~= operator support (for single element) New with statement support More...
11 lines
121 B
D
11 lines
121 B
D
module scope3;
|
|
|
|
void main()
|
|
{
|
|
int i;
|
|
while (i < 10) {
|
|
scope(success) i++;
|
|
}
|
|
printf("%d\n", i);
|
|
}
|