Skip to content

Instantly share code, notes, and snippets.

@jarmo
Created October 16, 2010 15:58
Show Gist options
  • Select an option

  • Save jarmo/629950 to your computer and use it in GitHub Desktop.

Select an option

Save jarmo/629950 to your computer and use it in GitHub Desktop.
program test;
var
a: double;
b: double;
c: double;
begin
a := 1.2;
b := 1.0;
c := 0.2;
WriteLn(a - b = c);
WriteLn(a * 10 - b * 10 = c * 10);
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment