mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
16 lines
199 B
D
16 lines
199 B
D
module g;
|
|
|
|
extern(C) int printf(char*, ...);
|
|
|
|
void func(char[] str)
|
|
{
|
|
printf("%.*s\n", str.length, str.ptr);
|
|
}
|
|
|
|
void main()
|
|
{
|
|
char[] arr = "Hello World!";
|
|
func(arr);
|
|
func("ditto");
|
|
}
|