PasteRack.org
Paste # 78584
2017-03-21 13:51:51

Fork as a new paste.

Paste viewed 47 times.


Embed:

module problems

  1. #lang racket/base
  2.  
  3. (module test racket/base
  4.   (provide hello-world)
  5.   (define hello-world (lambda () "HELLO")))
  6.  
  7. (module test2 'test
  8.   (provide call-hw)
  9.   (define (call-hw) (hello-world)))
  10.  
  11.  
  12. (require 'test2)
  13. (call-hw)

=>