Last active
June 7, 2019 11:28
-
-
Save Mreyna3/1d6ddf1a6a80e21fb615e43468201be2 to your computer and use it in GitHub Desktop.
Test Data
This file contains hidden or 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
var transactionsDataSource1 = [0.32,0.10,0.01,0.02] | |
var processor = PaymentProcessor() | |
for i in 0..<transactionsDataSource1.count { | |
processor.enqueue(transaction: transactionsDataSource1[i]) | |
} | |
let sum = processor.batchSum | |
print(sum) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment