mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 18:33:14 +01:00
8 lines
116 B
D
8 lines
116 B
D
module complex4;
|
|
|
|
void main()
|
|
{
|
|
cfloat c = 2f + 3fi;
|
|
float r = cast(float)c;
|
|
ifloat i = cast(ifloat)c;
|
|
} |