view run/opCat_03.d @ 55:75472ba72120

added opCat tests
author thomask
date Fri, 22 Oct 2004 05:42:45 +0000
parents
children 5f98d4a33d49
line wrap: on
line source

int main(){
	wchar[] a="abc";
	wchar[] b="efg";
	wchar[] c=a~"d"~b;
	return 0;
}