Thank you for your comment

Beau­tiful Racket / racket school 2019

  1. (module mod-name expander-mod
       expression ···)
    1
    2
    (module mod-name expander-mod
       expression ···)
    
    copy to clipboard
    (module mod-name expander-mod
       (#%module-begin expression ···))
    1
    2
    (module mod-name expander-mod
       (#%module-begin expression ···))
    
    copy to clipboard
test.rkt
#lang conjunction

"hello world"
(+ 1 (* 2 (- x)))
1
2
3
4
#lang conjunction

"hello world"
(+ 1 (* 2 (- x)))
copy to clipboard
← prev next →