This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
// MARK: - Usage: Paste the source code in Xcode Playground and run the examples | |
// MARK: - Parameters | |
let fortnightlyInvest: Decimal = 800 | |
let monthlyInvest: Decimal = fortnightlyInvest / 14 * 365 / 12 | |
let yearlyInvest: Decimal = fortnightlyInvest / 14 * 365 | |
let interest: Decimal = 0.08 |