Files
ldc/test/g.d
Tomas Lindquist Olsen 5d2e8f1009 [svn r9] added a preliminary rebuild profile. llvmdc-posix - very handy :)
added readme.txt
added test/g.d - tests passing strings to functions
fixed test/dgs.d and test/funcptr, now all tests except those related to typeinfo should work.
2007-09-05 07:16:31 +02:00

14 lines
164 B
D

module g;
void func(char[] str)
{
printf("%.*s\n", str.length, str.ptr);
}
void main()
{
char[] arr = "Hello World!";
func(arr);
func("ditto");
}