Skip to content

Instantly share code, notes, and snippets.

@foxicode
Last active August 10, 2020 12:11
Show Gist options
  • Select an option

  • Save foxicode/797ea63c6fa672900bb15040e6d3d2a8 to your computer and use it in GitHub Desktop.

Select an option

Save foxicode/797ea63c6fa672900bb15040e6d3d2a8 to your computer and use it in GitHub Desktop.
Converting cents to dollars
import Foundation
extension Int {
func centsToDollars() -> Double {
Double(self) / 100
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment