mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
11 lines
154 B
D
11 lines
154 B
D
module scope3;
|
|
extern(C) int printf(char*, ...);
|
|
void main()
|
|
{
|
|
int i;
|
|
while (i < 10) {
|
|
scope(success) i++;
|
|
}
|
|
printf("%d\n", i);
|
|
}
|