mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
20 lines
175 B
D
20 lines
175 B
D
char[] get()
|
|
{
|
|
return "hello";
|
|
}
|
|
|
|
void param(char[] s)
|
|
{
|
|
}
|
|
|
|
void refparam(ref char[] s)
|
|
{
|
|
}
|
|
|
|
void main()
|
|
{
|
|
char[] dstr = get();
|
|
param(dstr);
|
|
refparam(dstr);
|
|
}
|