Created
November 2, 2019 20:36
-
-
Save chelseatroy/c53090ea13486756d0d97f150a46a322 to your computer and use it in GitHub Desktop.
Scheme Data
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
> (define pair (cons 2 3)) | |
> pair | |
'(2 . 3) | |
> (car pair) | |
2 | |
> (cdr pair) | |
3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment