view run/opCat_02.d @ 55:75472ba72120

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

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