PasteRack.org
Paste # 55372
2014-10-01 13:03:27

Fork as a new paste.

Paste viewed 44 times.


Embed:

calling a fun from a variable

  1. #lang racket
  2.  
  3. (define (f x)
  4.   (* x x))
  5.  
  6. (define y f)
  7.  
  8. (define z add1)
  9.  
  10. (y 4)
  11.  
  12. (z 5)

=>

16

6