Skip to content

Instantly share code, notes, and snippets.

@ascjones
Created January 21, 2015 11:21
Show Gist options
  • Save ascjones/0bc9fe20820342b82cb8 to your computer and use it in GitHub Desktop.
Save ascjones/0bc9fe20820342b82cb8 to your computer and use it in GitHub Desktop.
Stripping trailing 0s from decimal
let stripZeros d = d / 1.000000000000000000000000000000000M
// > stripZeros 1.5000M;;
// val it : decimal = 1.5M
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment