view tests/mini/cond1.d @ 1242:f1877b6be63d

Merge with rev [1221]
author Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
date Fri, 17 Apr 2009 01:19:03 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module cond1;

void main()
{
    double a = 2;
    double b = 4;
    double c = (a > 0) ? a : b;
}