Skip to content

Instantly share code, notes, and snippets.

@fschuindt
Created March 30, 2019 19:38
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 fschuindt/cf8d4c843caa00e26284e075c25bbc4d to your computer and use it in GitHub Desktop.
Save fschuindt/cf8d4c843caa00e26284e075c25bbc4d to your computer and use it in GitHub Desktop.
(require sicp)
(display "What's your name?\n")
(define **name** (read))
(define hello-you (lambda (name) (format "Hello ~a! ~%" name)))
(hello-you **name**)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment