Files
ldc/test/globals1.d
Tomas Lindquist Olsen 879d2f10be [svn r25] * Fixed a lot of problems with string literals
* Fixed slice-slice copying assignment
2007-10-04 07:01:15 +02:00

11 lines
175 B
D

module globals1;
char[] gstr = "hello world";
void main()
{
printf("%.*s\n", gstr.length, gstr.ptr);
char[] str = gstr;
printf("%.*s\n", str.length, str.ptr);
}