Last active
August 29, 2015 14:15
-
-
Save JefClaes/24f42ef7c715b579711a to your computer and use it in GitHub Desktop.
Playthrough Bonus II
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
let rec playUntilCleared ( bonus : Bonus ) settings = | |
match bonus.Cleared with | |
| true -> bonus | |
| false -> | |
( | |
let bet = settings.Stake | |
let win = settings.Stake / 100M * settings.Payout | |
match bonus.AcceptsBet bet with | |
| false -> bonus | |
| true -> playUntilCleared ( bonus.Bet(bet).Win(win) ) settings | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment