We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1451e7d commit b220409Copy full SHA for b220409
1 file changed
README.md
@@ -96,7 +96,7 @@ begin
96
Result := '';
97
Q := V div 10;
98
R := V - (Q * 10);
99
- Result := IntToStr(Q) + '.' + IntToStr(R);
+ Result := Result + IntToStr(Q) + '.' + IntToStr(R);
100
end;
101
102
procedure Test;
0 commit comments