PasteRack.org
Paste # 37168
2019-06-13 05:34:10

Fork as a new paste.

Paste viewed 382 times.


Embed:

  1. #lang racket
  2. (define z (cons 10 20))
  3. (match-define (cons x y) z)
  4. x

=>

10