PasteRack.org
Paste # 51347
2019-05-16 07:39:36

Forked from paste # 95017.

Fork as a new paste.

Paste viewed 303 times.


Embed:

  1. #lang racket
  2.  
  3. (let foo [(x 1)]
  4.   (if (= x 5)
  5.       x
  6.       (foo (add1 x))))

=>

5