Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trycf/a12634b79b9994faf1596c2b0663ea56 to your computer and use it in GitHub Desktop.
Save trycf/a12634b79b9994faf1596c2b0663ea56 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
// 596.45 * 100 = 59645.00000000001
x = 596.40 * 100;
dump(x);
x = 596.41 * 100;
dump(x);
x = 596.42 * 100;
dump(x);
x = 596.43 * 100;
dump(x);
x = 596.44 * 100;
dump(x);
x = 596.45 * 100;
dump(x);
x = 596.46 * 100;
dump(x);
x = 596.47 * 100;
dump(x);
x = 596.48 * 100;
dump(x);
x = 596.49 * 100;
dump(x);
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment