On Friday, 20 May 2022 at 02:09:43 UTC, forkit wrote:
>
D suffers from the same problem as C.
// ---
module test;
@safe: // completly useless annotation here!
import std;
void main()
{
int x = 3;
int y = 4;
float z =x/y;
writeln(z); // 0
}
// -----