Created
June 10, 2009 19:53
-
-
Save sporkmonger/127454 to your computer and use it in GitHub Desktop.
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 double x = 2 * x;; | |
let sum x y = x + y;; | |
(* How do you get a function 2(x + y) from this? *) | |
let foo = double sum;; (* Obviously doesn't work *) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment