DEV Community

Vee Satayamas
Vee Satayamas

Posted on

2 1

cons car cdr

(cons "dog" "cat")

+------------------+-----------------+
|                  |                 |
|                  |                 |
|                  |                 |
|        X         |        X        |
|        |         |        |        |
|        |         |        |        |
|        |         |        |        |
+--------|---------+--------|--------+
         |                  |
         |                  |
         V                  V
       "dog"              "cat"
Enter fullscreen mode Exit fullscreen mode

(car (cons "dog" "cat"))

"dog"
Enter fullscreen mode Exit fullscreen mode

(cdr (cons "dog" "cat"))

"cat"
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs