dfmt/tests/knr/issue0433.d.ref

8 lines
149 B
Plaintext

int abs(int x)
{
if (x < 0) // x negative, must negate
return -x;
else // x already non-negative, just return it
return x;
}