Skip to content

Instantly share code, notes, and snippets.

@delbertooo
Created July 30, 2012 14:42
Show Gist options
  • Save delbertooo/3207428 to your computer and use it in GitHub Desktop.
Save delbertooo/3207428 to your computer and use it in GitHub Desktop.
Additionsbeispiel im CPS
add :: Int -> Int -> Int
add x y = x + y
add_cps :: Int -> Int -> (Int -> r) -> r
add_cps x y k = k (add x y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment