view run/complex_01.d @ 1:3414705c41ac

removed CVS header
author thomask
date Sun, 26 Sep 2004 12:06:09 +0000
parents 3269e4627918
children a33ad7189d21
line wrap: on
line source


// @author@	Ivan Senji <ivan.senji@public.srce.hr>
// @date@	2004-05-01
// @uri@	news://c71239$1dij$1@digitaldaemon.com

int main(){
	creal C, Cj;
	real y, x;

	C  = x + y * 1i + Cj;
	Cj = y * 1i + C + x;
	C  = Cj + 1i * y + x;
	Cj = 1i * y + x + C;

	return 0; 
}