mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
18 lines
210 B
D
18 lines
210 B
D
extern(C) int printf(char*, ...);
|
|
|
|
void main()
|
|
{
|
|
int[] arr = [1];
|
|
foreach(s; arr)
|
|
{
|
|
void foo()
|
|
{
|
|
printf("n %d\n", s);
|
|
}
|
|
|
|
printf("o1 %d\n", s);
|
|
foo();
|
|
printf("o2 %d\n", s);
|
|
}
|
|
}
|