Skip to content

Instantly share code, notes, and snippets.

@chelseatroy
Created November 2, 2019 20:36
Show Gist options
  • Save chelseatroy/c53090ea13486756d0d97f150a46a322 to your computer and use it in GitHub Desktop.
Save chelseatroy/c53090ea13486756d0d97f150a46a322 to your computer and use it in GitHub Desktop.
Scheme Data
> (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