view run/length_02.d @ 4:1ed6616fe905

extended array tests
author thomask
date Sun, 26 Sep 2004 15:54:31 +0000
parents
children f87ba6507260
line wrap: on
line source

int main(){
	int[char[]] array;
	assert(array.length == 0);
	array["drei"]=3;
	array["sieben"]=7;
	assert(array.length == 2);
	return 0;
}