PasteRack.org
Paste # 6313
2022-11-22 19:30:21

Fork as a new paste.

Paste viewed 1457 times.


Embed:

  1. #lang racket
  2.  
  3. (define-values (in out) (make-pipe-with-specials))
  4. (struct foo (val))
  5. (write-special (foo 42) out)
  6. (foo-val (read in))

=>

#t

42