mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
17 lines
189 B
D
17 lines
189 B
D
import core.stdc.stdio;
|
|
|
|
extern (C) int main()
|
|
{
|
|
printf("hello world\n");
|
|
foo(3);
|
|
return 0;
|
|
}
|
|
|
|
int foo(int i)
|
|
{
|
|
final switch (i)
|
|
{
|
|
case 1: break;
|
|
}
|
|
return i;
|
|
}
|