mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
New array literal support New array ~= operator support (for single element) New with statement support More...
9 lines
99 B
D
9 lines
99 B
D
module cond1;
|
|
|
|
void main()
|
|
{
|
|
double a = 2;
|
|
double b = 4;
|
|
double c = (a > 0) ? a : b;
|
|
}
|