view tests/mini/complex2.d @ 804:236f4b5eddca

Removed use of DMD's toPrettyChars function for providing llvm value names.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sat, 29 Nov 2008 22:37:36 +0100
parents fbb1a366cfbc
children
line wrap: on
line source

module complex2;

void main()
{
    cdouble c = 3.0 + 0i;
    cdouble d = 2.0 + 0i;
    cdouble c1 = c + 3.0;
    cdouble c2 = c - 3.0i;
    cdouble c3 = c / 2.0;
}