Skip to content

Instantly share code, notes, and snippets.

@carloscarvallo
Created December 27, 2017 19:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carloscarvallo/8ad12914defb454414b6326aa7ed1e99 to your computer and use it in GitHub Desktop.
Save carloscarvallo/8ad12914defb454414b6326aa7ed1e99 to your computer and use it in GitHub Desktop.
compound_procedures created by carlosdim - https://repl.it/@carlosdim/compoundprocedures
(define (square x) (* x x))
(define (sum-of-squares x y)
(+ (square x) (square y)))
(sum-of-squares 3 4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment