Skip to content

Instantly share code, notes, and snippets.

@palladin
Last active September 25, 2021 17:52
Show Gist options
  • Save palladin/c2964748e45a0a59a15b to your computer and use it in GitHub Desktop.
Save palladin/c2964748e45a0a59a15b to your computer and use it in GitHub Desktop.
Simple CPS composition
let inline f k = (fun x -> k (x + 1))
let inline g k = (fun x -> k (x + 2))
(f << g) id 1 // 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment