Hey everyone. I have this code, which creates two variables one, two, which both are equal to 0.4, but for some reason one = 0.4 but one < 0.4 is true. Can somebody explain this? data test; one = 1.9/4.75; two = 4/10; if one < two then test = 1; run;
... View more