mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
11 lines
117 B
D
11 lines
117 B
D
module scope1;
|
|
|
|
void main()
|
|
{
|
|
printf("1\n");
|
|
{
|
|
scope(exit) printf("2\n");
|
|
}
|
|
printf("3\n");
|
|
}
|