comparison test/mainargs1.d @ 91:3f949c6e2e9d trunk

[svn r95] added support for mains like: T main(string[] args) fixed a bug with slicing a pointer that is an argument with no storage
author lindquist
date Wed, 07 Nov 2007 04:52:56 +0100
parents
children 44a95ac7368a
comparison
equal deleted inserted replaced
90:16e88334bba7 91:3f949c6e2e9d
1 module mainargs1;
2
3 void main(string[] args)
4 {
5 foreach(v; args)
6 {
7 printf("%.*s\n", v.length, v.ptr);
8 }
9 }