PasteRack.org
Paste # 33938
2022-01-14 19:56:08

Fork as a new paste.

Paste viewed 120 times.


Embed:

test threading

  1. #lang racket
  2. (require threading)
  3. (~> 1 add1 sqrt)
  4. ;1.4142135623730951
  5.  
  6. (~> 'abc
  7.       symbol->string
  8.       string->bytes/utf-8
  9.       (bytes-ref 1)
  10.       (- 2))

=>

1.4142135623730951

96