view dmd/Complex.d @ 192:eb38fdcb3e62 default tip

updated to compile with dmd2.062
author korDen
date Sat, 02 Mar 2013 01:25:52 -0800
parents 9e39c7de8438
children
line wrap: on
line source

module dmd.Complex;

struct Complex(T)
{
	T re;
	T im;
	
	public static const Complex zero = Complex(0, 0);
}