Created
November 18, 2016 05:02
-
-
Save imetallica/4f93fe3759269942ab33057287fdc49e to your computer and use it in GitHub Desktop.
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
module FunPizzas | |
type Pizza = Calabreza | Chicken | |
// Pizza -> int -> int | |
let timeToReady pizza deliveryDelay = | |
let pizzaDelay = | |
match pizza with | |
| Calabreza -> 30 | |
| Chicken -> 25 | |
pizzaDelay + deliveryDelay | |
// (int -> int) | |
let t = timeToReady Calabreza | |
// int | |
let finalTime = t 30 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment