PasteRack.org
Paste # 3118
2022-01-14 07:10:24

Fork as a new paste.

Paste viewed 123 times.


Embed:

  1. #lang racket
  2.  
  3. ; using htdf recipe
  4.  
  5. ;; String —> String
  6. ;; adds a "s" to p
  7. ; (define (addition p) "")
  8.  
  9.  ;(check-except ( additon "apple") "apples")
  10.  ;(define (additin p)"")
  11.  
  12.  (define(addition p )
  13.    (string-append p "s"))

=>