PasteRack.org
Paste # 91431
2025-05-13 21:21:47

Fork as a new paste.

Paste viewed 65 times.


Embed:

  1. #lang racket
  2.  
  3. (define (func x #:y [y 0])
  4.   (+ x y))
  5.  
  6. (func 1)

=>

1