Skip to content

Instantly share code, notes, and snippets.

@imetallica
Created November 18, 2016 05:02
Show Gist options
  • Save imetallica/4f93fe3759269942ab33057287fdc49e to your computer and use it in GitHub Desktop.
Save imetallica/4f93fe3759269942ab33057287fdc49e to your computer and use it in GitHub Desktop.
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