mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
236 B
OpenEdge ABL
11 lines
236 B
OpenEdge ABL
int abc() { return 1; }
|
|
int def(const char *p, ...) { return 2; }
|
|
int ghi(const char *p, int i) { return 3; }
|
|
|
|
int main()
|
|
{
|
|
abc("hello world %d\n", 1);
|
|
def("hello world %d\n", 2);
|
|
ghi("hello world %d\n", 3);
|
|
return 0;
|
|
}
|